Tools, FAQ, Tutorials:
Azure AD v1 Authentication Request Test Page
How to build an Azure AD v1.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-Authentication-Request-Test.html:
<html><body><h3>Azure AD Authentication Request Test</h3> <form method="GET" action="https://login.microsoftonline.com/common/oauth2/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/> <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 v1 Authentication Response
2022-05-01, 1335🔥, 0💬
Popular Posts:
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...