Created
September 19, 2019 14:26
-
-
Save Geertvdc/a3e89d75e1f13844068666e4e57c04f3 to your computer and use it in GitHub Desktop.
Get Bearer Token REST Client call
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @name auth | |
POST https://login.microsoftonline.com/{{tenantId}}/oauth2/v2.0/token HTTP/1.1 | |
Content-type: application/x-www-form-urlencoded | |
grant_type=client_credentials | |
&client_id={{clientId}} | |
&client_secret={{clientSecret}} | |
&scope={{scope}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment