Skip to content

Commit cd0c091

Browse files
authored
Merge pull request #126005 from changeworld/patch-110
Fix typo
2 parents 110d21f + 020eaf0 commit cd0c091

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/active-directory-b2c/custom-policies-series-sign-up-or-sign-in-federation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ When the custom policy runs:
452452

453453
- **Orchestration Step 5** - This step runs if the user doesn't already exist (`objectId` doesn't exist), so the `AAD-UserWriteUsingAlternativeSecurityId` Technical Profile executes to write the social account into Microsoft Entra ID.
454454

455-
- **Orchestration Step 6** - Finally, step 6 assembles and returns the JWT token at the end of the policy’s execution.
455+
- **Orchestration Step 6** - Finally, step 6 assembles and returns the JWT at the end of the policy’s execution.
456456

457457
## Step 5 - Update relying party output claims
458458

@@ -466,7 +466,7 @@ In the `ContosoCustomPolicy.XML` file, locate the `RelyingParty` element, and th
466466
<OutputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="sub"/>
467467
<OutputClaim ClaimTypeReferenceId="identityProvider" />
468468
```
469-
We've added the identity provider (*identityProvider*) as an output claim, so it will be included in the JWT token returned to the relying party application.
469+
We've added the identity provider (*identityProvider*) as an output claim, so it will be included in the JWT returned to the relying party application.
470470

471471
## Step 6 - Upload policy
472472

@@ -485,7 +485,7 @@ If it's the first time running this policy (social account doesn't already exist
485485

486486
Enter or update **Display Name**, **Given Name** and the **Surname**, and then select **Continue** button.
487487

488-
After the policy finishes execution, you're redirected to https://jwt.ms, and you see a decoded JWT token. It looks similar to the following JWT token snippet:
488+
After the policy finishes execution, you're redirected to https://jwt.ms, and you see a decoded JWT. It looks similar to the following JWT snippet:
489489

490490
```json
491491
{
@@ -504,7 +504,7 @@ After the policy finishes execution, you're redirected to https://jwt.ms, and yo
504504
}.[Signature]
505505
```
506506

507-
Notice the identity provider, `"idp": "facebook.com"`, has been included in the JWT token.
507+
Notice the identity provider, `"idp": "facebook.com"`, has been included in the JWT.
508508

509509
## A combined local and social sign-in
510510

0 commit comments

Comments
 (0)