Tools, FAQ, Tutorials:
Azure AD v2 Access Token Request Test Page
How to build an Azure AD 2.0 Access Token Request Test page?
✍: FYIcenter.com
The Access Token Request is the second call to the Azure AD service
in the authentication code flow to retrieve the id_token
with the authentication code received from the first call.
You can build a simple Web form page to test different behavior of the Access Token Request.
Here is an example, Azure-AD-2-Access-Token-Request-Test.html:
<html><body><h3>Azure AD OpenID Connect Access Token Test</h3> <form method="POST" action="https://login.microsoftonline.com/common/oauth2/v2.0/token"> client_id: <input size="80" name="client_id" value="bd51d56c-e744-4a58-91e1-9afd0d7e821c"><br/> code: <input name="code" size="80" value="OAAABAAAAiL9Kn2Z27UubvWFPbm0gLWQJVzCTE9UkP3pSx1aXxUjq3n8b2JRLk4OxVXr"><br/> redirect_uri: <input size="80" name="redirect_uri" value="http://fyicenter.com/openID_receiver.php"><br/> grant_type: <input name="grant_type" value="authorization_code"><br/> client_secret: <input name="client_secret" value="JqQX2PNo9bpM0uEihUPzyrh"><br/> <br/> <input type="Submit" name="Submit" value="Submit"><br/> </form> </body></html>
You can enter your own "client_id", "code", "redirect_uri" and other parameters to try it. Remember that "code" value must obtained by calling the authentication response.
Â
⇒ Build Authorization Code Flow with Azure AD v2
⇠Access Token Response Received from Azure AD v2
⇑⇑ OpenID Tutorials
2019-03-27, 998👍, 0💬
Popular Posts:
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...