...
| Code Block | ||
|---|---|---|
| ||
curl --location --request POST 'https://login.microsoftonline.com/c3ab1869-1472-4577-b669-0d64c732e75c/oauth2/token' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'grant_type=client_credentials' \ --data-urlencode 'client_id=<YOURCLIENTID>' \ --data-urlencode 'client_secret=<YOURCLIENTSECRET>' \ --data-urlencode 'resource=<RESOURCE_ID_FOR_APPLICATION_YOU_WANT_TO_ACCESS>' |
Below is a list of resource ID's for applications that use this authentication method:
Search and Match V2 (launched 4 July 2022):
| Code Block |
|---|
5df05a6d-8ef0-49fe-9441-62cd9b540376 |
You will then receive the following:
...