File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
articles/active-directory-b2c Expand file tree Collapse file tree 1 file changed +11
-3
lines changed 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 : conceptual
12
- ms.date : 03/30 /2020
12
+ ms.date : 04/20 /2020
13
13
ms.author : mimart
14
14
ms.subservice : B2C
15
15
---
@@ -207,11 +207,19 @@ A claim provides temporary storage of data during an Azure AD B2C policy executi
207
207
1 . Open the extensions file of your policy. For example, <em >` SocialAndLocalAccounts/ ` ** ` TrustFrameworkExtensions.xml ` ** </em >.
208
208
1 . Search for the [ BuildingBlocks] ( buildingblocks.md ) element. If the element doesn't exist, add it.
209
209
1 . Locate the [ ClaimsSchema] ( claimsschema.md ) element. If the element doesn't exist, add it.
210
- 1 . Add the city bearerToken to the ** ClaimsSchema** element.
210
+ 1 . Add the following claims to the ** ClaimsSchema** element.
211
211
212
212
``` xml
213
213
<ClaimType Id =" bearerToken" >
214
- <DisplayName >bearer token</DisplayName >
214
+ <DisplayName >Bearer token</DisplayName >
215
+ <DataType >string</DataType >
216
+ </ClaimType >
217
+ <ClaimType Id =" grant_type" >
218
+ <DisplayName >Grant type</DisplayName >
219
+ <DataType >string</DataType >
220
+ </ClaimType >
221
+ <ClaimType Id =" scope" >
222
+ <DisplayName >scope</DisplayName >
215
223
<DataType >string</DataType >
216
224
</ClaimType >
217
225
```
You can’t perform that action at this time.
0 commit comments