You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above example uses default scopes for [app-only access](https://learn.microsoft.com/en-us/graph/permissions-overview?tabs=http#application-permissions). If using [delegated access](https://learn.microsoft.com/en-us/graph/permissions-overview#delegated-permissions) you can provide custom scopes:
@@ -93,14 +93,45 @@ The above example uses default scopes for [app-only access](https://learn.micros
Be carefull as the ClientSecretCredential isn't based on the httpx client but is rather using the requests library
132
+
underneath to make it's authentication calls, so the dict is a bit different for the ClientSecretCredential class as
133
+
opposed for the httpx AsyncClient. That's why we need to adapt the proxies dict before passing it to the httpx AsyncClient.
134
+
104
135
## 3. Make requests against the service
105
136
106
137
After you have a **GraphServiceClient** that is authenticated, you can begin making calls against the service. The requests against the service look like our [REST API](https://docs.microsoft.com/graph/api/overview?view=graph-rest-1.0).
0 commit comments