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
Copy file name to clipboardExpand all lines: articles/active-directory-b2c/claim-resolver-overview.md
+25-3Lines changed: 25 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ manager: CelesteDG
9
9
ms.service: active-directory
10
10
ms.workload: identity
11
11
ms.topic: reference
12
-
ms.date: 12/12/2021
12
+
ms.date: 1/11/2022
13
13
ms.author: kengaderdus
14
14
ms.subservice: B2C
15
15
---
@@ -133,8 +133,30 @@ The following table lists the [OAuth2 identity provider](oauth2-technical-profil
133
133
134
134
| Claim | Description | Example |
135
135
| ----- | ----------------------- | --------|
136
-
| {oauth2:access_token} | The access token. | N/A |
137
-
| {oauth2:refresh_token} | The refresh token. | N/A |
136
+
| {oauth2:access_token} | The OAuth2 identity provider access token. The `access_token` attribute. |`eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1Ni...`|
137
+
| {oauth2:token_type} | The type of the access token. The `token_type` attribute. | Bearer |
138
+
| {oauth2:expires_in} | The length of time that the access token is valid in seconds. The `expires_in` attribute. The output claim [DataType](claimsschema.md#datatype) must be `int` or `long`. | 960000 |
139
+
| {oauth2:refresh_token} | The OAuth2 identity provider refresh token. The `refresh_token` attribute. |`eyJraWQiOiJacW9pQlp2TW5pYVc2MUY...`|
140
+
141
+
To use the OAuth2 identity provider claim resolvers, set the output claim's `PartnerClaimType` attribute to the claim resolver. The following example demonstrates how the get the external identity provider claims:
0 commit comments