We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 734b433 + 2c99be2 commit 3a12673Copy full SHA for 3a12673
articles/azure-monitor/logs/api/authentication-authorization.md
@@ -45,6 +45,19 @@ You can also use this flow to request a token to `https://api.loganalytics.io`.
45
&client_secret=YOUR_CLIENT_SECRET
46
```
47
48
+##### Microsoft identity platform v2.0
49
+
50
+```
51
+ POST /YOUR_AAD_TENANT/oauth2/v2.0/token HTTP/1.1
52
+ Host: https://login.microsoftonline.com
53
+ Content-Type: application/x-www-form-urlencoded
54
55
+ grant_type=client_credentials
56
+ &client_id=YOUR_CLIENT_ID
57
+ &scope=https://management.azure.com/.default
58
+ &client_secret=YOUR_CLIENT_SECRET
59
60
61
A successful request receives an access token:
62
63
0 commit comments