Microsoft social identity provider
Social authentication is deprecated and will be removed in a future release of IDM. For more information, see Deprecation. |
Microsoft as a social identity provider requires access over secure HTTP (HTTPS). This example assumes that you’ve configured IDM on |
Set up Microsoft
For Microsoft documentation on how to set up a social identity provider, navigate to the following article: Sign-in Microsoft Account & Azure AD users in a single app. You’ll need a Microsoft account.
To set up Microsoft as a social identity provider:
-
Navigate to the Microsoft app registration portal, and sign in with your Microsoft account.
-
Select Add an App, and give your app a name.
The portal will assign your app a unique
Application ID
. -
To find your Application Secret, select Generate New Password. The displayed password is your Application Secret.
Store the Application Secret in a secure location, as you can’t view it again. -
Select Add Platform, and enter the following details:
-
Web platform.
-
Enable Allow Implicit Flow
-
Redirect URI:
https://openidm.example.com:8443/
-
Logo image (optional)
-
Terms of Service URL (optional)
-
Privacy Statement URL (optional)
-
The OAuth2
credentials for your new Microsoft App include an Application ID
and Application Secret
for your app.
Configure a Microsoft social identity provider
To configure a Microsoft social identity provider using the admin UI:
-
From the navigation bar, click Configure > Social ID Providers.
-
On the Social Identity Providers page, enable Microsoft.
-
In the Microsoft Provider window, enter applicable values in the fields, and click Save. For a complete list of fields, see Microsoft Social Identity Provider Configuration Details.
After you save the social identity provider configuration, IDM generates a conf/identityProvider-microsoft.json
file:
"provider" : "microsoft",
"authorizationEndpoint" : "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
"tokenEndpoint" : "https://login.microsoftonline.com/common/oauth2/v2.0/token",
"userInfoEndpoint" : "https://graph.microsoft.com/v1.0/me"
"clientId" : "<someUUID>",
"clientSecret" : {
"$crypto" : {
"type" : "x-simple-encryption",
"value" : {
"cipher" : "AES/CBC/PKCS5Padding",
"stableId" : "openidm-sym-default",
"salt" : "<hashValue>",
"data" : "<encryptedValue>",
"keySize" : 16,
"purpose" : "idm.config.encryption",
"iv" : "<encryptedValue>",
"mac" : "<hashValue>"
}
}
},
"scope" : [
"User.Read"
],
...
The file includes schema
information, which includes properties for each social identity account, as collected by IDM, as well as the order in which it appears in the admin UI. When you’ve registered a user with a Microsoft social identity, you can verify this by selecting Manage > Microsoft, and then selecting a user.
Another part of the file includes a propertyMap
, which maps user information entries between the source
(social identity provider) and the target
(IDM).
If you need more information about the properties in this file, refer to the following appendix: Microsoft Social Identity Provider Configuration Details.
Configure user registration to link to Microsoft
Once you’ve configured the Microsoft social identity provider, you can activate it through User Registration. To do so in the admin UI, select Configure > User Registration, and activate that feature. Under the Social tab that appears, enable Social Registration. For more information on IDM user self-service features, see Self-service end user UI.
When you enable Social Registration, you’re allowing users to register on IDM through all active social identity providers.
Microsoft social identity provider configuration details
You can set up the Microsoft social identity provider through the admin UI or in a conf/identityProvider-microsoft.json
file. IDM generates the identityProvider-microsoft.json
file when you configure and enable this social identity provider in the admin UI. Alternatively, you can create the file manually.
The following table includes the information shown in the admin UI Microsoft Provider pop-up window, along with associated information in the identityProvider-microsoft.json
file:
Property (UI) | Property (JSON file) | Description |
---|---|---|
Application ID |
|
The client identifier for your Microsoft App |
Application Secret |
|
Used with the Application ID; shown as application password |
Scope |
|
OAuth 2 scopes; for more information, see Microsoft Graph Permission Scopes. |
Authorization Endpoint |
|
Typically |
Token Endpoint |
|
Endpoint that receives a one-time authorization code and returns an access token; typically |
User Info Endpoint |
|
Endpoint that transmits scope-related fields; typically |
Not in the admin UI |
|
Name of the social identity provider |
Not in the admin UI |
|
Authentication module |
Not in the admin UI |
|
Authentication identifier, as returned from the User Info Endpoint for each social identity provider |
Not in the admin UI |
|
Mapping between Microsoft and IDM |
For information on social identity provider buttons and badges, see Social identity provider button and badge properties.