Tools, FAQ, Tutorials:
Azure AD v2 Authentication Request Test Page
How to build an Azure AD 2.0 Authentication Request Test page?
✍: FYIcenter.com
The Authentication Request is the first call to the Azure AD service. You can build a simple Web form page to test different behavior of the Authentication Request.
Here is an example, Azure-AD-2-Authentication-Request-Test.html:
<html><body><h3>Azure AD Authentication Request Test</h3> <form method="GET" action="https://login.microsoftonline.com/common/oauth2/v2.0/authorize"> client_id: <input size="80" name="client_id" value="bd51d56c-e744-4a58-91e1-************"><br/> redirect_uri: <input size="80" name="redirect_uri" value="http://fyicenter.com/openID_receiver.php"><br/> scope: <input name="scope" value="openid"><br/> response_type: <input name="response_type" value="id_token"><br/> response_mode: <input name="response_mode" value="form_post"><br/> nonce: <input name="nonce" value="xxxxxx"><br/> state: <input name="state" value="yyyyyy"><br/> prompt: <input name="prompt" value="consent"><br/> <br/> <input type="Submit" name="Submit" value="Submit"><br/> </form> </body></html>
Upload this page to your Web server, and view it from a Web browser, you see the test form displayed:
You can enter your own client_id, redirect_uri and other parameters to try it.
⇒ Dump Azure AD v2.0 Authentication Response
2019-05-03, 1329🔥, 0💬
Popular Posts:
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...