Skip to content

Commit f01f73a

Browse files
authored
Merge pull request #111949 from yoelhor/patch-33
Update secure-rest-api.md
2 parents 7ab1dd1 + b4e8837 commit f01f73a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

articles/active-directory-b2c/secure-rest-api.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: celestedg
99
ms.service: active-directory
1010
ms.workload: identity
1111
ms.topic: conceptual
12-
ms.date: 03/30/2020
12+
ms.date: 04/20/2020
1313
ms.author: mimart
1414
ms.subservice: B2C
1515
---
@@ -207,11 +207,19 @@ A claim provides temporary storage of data during an Azure AD B2C policy executi
207207
1. Open the extensions file of your policy. For example, <em>`SocialAndLocalAccounts/`**`TrustFrameworkExtensions.xml`**</em>.
208208
1. Search for the [BuildingBlocks](buildingblocks.md) element. If the element doesn't exist, add it.
209209
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.
211211

212212
```xml
213213
<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>
215223
<DataType>string</DataType>
216224
</ClaimType>
217225
```

0 commit comments

Comments
 (0)