SSO With Azure AD OpenID Connect
SSO With Azure AD OpenID Connect
SSO With Azure AD OpenID Connect
This document describes the basic set of steps required to get started with onboarding your app to AAD
using OpenID Connect.
5. A light box wizard will come up - choose the Add an app my organization is developing option
6. Name your app and choose Web application and/or Web API as the Type, and click the next
arrow
7. Choose a sign-in URL and App ID URL for the app, and click the check button on the bottom right
to complete the creation
8. Go to the Configure heading and copy your clientID to use within the app for calling AAD
Here is an example OpenID Connect Authorize request for the Azure management portal:
https://login.windows.net/common/oauth2/authorize?
response_type=code+id_token&client_id=00000013-0000-0000-c000-
000000000000&scope=openid&nonce=7477cb26-7cc2-4f1a-a491-
d895eaad868f&response_mode=form_post&redirect_uri=https%3a%2f%2fmanage.windowsazure.com
%2f
The token endpoint requests / responses are described in detail in the existing AAD OAuth2
documentation.