Tools, FAQ, Tutorials:
Azure AD Application Integration in Azure AD B2C
How to integrate my application with to Azure AD service? I have registered it as an Azure AD application.
✍: FYIcenter.com
If you have registered your application as an Azure AD application,
you can integrate your application with Azure AD service using
OpenID Connect protocol with the following information:
1. "Endpoints" - URLs of different Integration request calls. You can see them by going to "Azure Active Directory > App Registrations > Endpoints". For example:
URL for OpenID Connect authentication request: https://login.microsoftonline.com/094191ff-.../oauth2/authorize URL for OpenID Connect access token request: https://login.microsoftonline.com/094191ff-.../oauth2/token
2. "Application ID" - The identifier of your application in Azure AD service. You should see it after your application registration. "Application ID" is used as the "client_id" parameter in both OpenID Connect requests.
3. "Secret Key" - The secret key you added as part of your application registration to protect the OpenID Connect access token request call. "Secret Key" is used as the "client_secret" parameter in the access token request.
4. "Reply URLs" - URLs of you server side scripts you added as part of your application registration. "Reply URL" is used as the "redirect_uri" parameter in both OpenID Connect requests.
You should be able to finish the integration by following other tutorials.
Â
⇒ Register Azure AD B2C Application
⇠Register Azure AD Application in Azure AD B2C
⇑⇑ OpenID Tutorials
2019-03-20, 958👍, 0💬
Popular Posts:
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...