File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ def __init__(self, **kwargs):
4343 def create_with_default_middleware (self , credential : TokenCredential , ** kwargs ) -> Session :
4444 """Applies the default middleware chain to the HTTP Client
4545
46- :param credential: Accesstoken used to access the Graph API. Created through one of the
47- credential classes from `azure.identity`
46+ :param credential: TokenCredential used to acquire an access token for the Microsoft
47+ Graph API. Created through one of the credential classes from `azure.identity`
4848 """
4949 middleware = [
5050 AuthorizationHandler (credential , ** kwargs ),
Original file line number Diff line number Diff line change 1111class GraphClient :
1212 """Constructs a custom HTTPClient to be used for requests against Microsoft Graph
1313
14- :keyword credential: Accesstoken used to access the Graph API. Created through one of the
15- credential classes from `azure.identity`
14+ :keyword credential: TokenCredential used to acquire an access token for the Microsoft
15+ Graph API. Created through one of the credential classes from `azure.identity`
1616 :keyword list middleware: Custom middleware(HTTPAdapter) list that will be used to create
1717 a middleware pipeline. The middleware should be arranged in the order in which they will
1818 modify the request.
You can’t perform that action at this time.
0 commit comments