You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This OptionalClaims object causes the ID token returned to the client to include a upn claim with the additional home tenant and resource tenant information. The `upn` claim is only changed in the token if the user is a guest in the tenant (that uses a different IDP for authentication).
@@ -145,32 +146,31 @@ You can configure optional claims for your application through the UI or applica
145
146
The following application manifest entry adds the auth_time, ipaddr, and upn optional claims to ID, access, and SAML tokens.
2. When finished, select **Save**. Now the specified optional claims will be included in the tokens for your application.
@@ -259,7 +259,7 @@ This section covers the configuration options under optional claims for changing
259
259
For example:
260
260
261
261
```json
262
-
"groupMembershipClaims": "SecurityGroup"
262
+
"groupMembershipClaims": "SecurityGroup"
263
263
```
264
264
265
265
By default Group ObjectIDs will be emitted in the group claim value. To modify the claim value to contain on premises group attributes, or to change the claim type to role, use OptionalClaims configuration as follows:
@@ -278,12 +278,12 @@ This section covers the configuration options under optional claims for changing
278
278
For each relevant token type, modify the groups claim to use the OptionalClaims section in the manifest. The OptionalClaims schema is as follows:
279
279
280
280
```json
281
-
{
282
-
"name": "groups",
283
-
"source": null,
284
-
"essential": false,
285
-
"additionalProperties": []
286
-
}
281
+
{
282
+
"name": "groups",
283
+
"source": null,
284
+
"essential": false,
285
+
"additionalProperties": []
286
+
}
287
287
```
288
288
289
289
| Optional claims schema | Value |
@@ -311,12 +311,16 @@ This section covers the configuration options under optional claims for changing
@@ -390,27 +405,30 @@ In the example below, you will use the **Token configuration** UI and **Manifest
390
405
1. You can directly edit the manifest using this editor. The manifest follows the schema for the [Application entity](https://docs.microsoft.com/azure/active-directory/develop/reference-app-manifest), and automatically formats the manifest once saved. New elements will be added to the `OptionalClaims` property.
0 commit comments