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
1. The `IncludeClaimResolvingInClaimsHandling` metadata must set to `true`
123
-
1. The input or output claims attribute `AlwaysUseDefaultValue` must set to `true`
122
+
1. The `IncludeClaimResolvingInClaimsHandling` metadata must be set to `true`.
123
+
1. The input or output claims attribute `AlwaysUseDefaultValue` must be set to `true`.
124
124
125
125
## Claim resolvers samples
126
126
127
127
### RESTful technical profile
128
128
129
129
In a [RESTful](restful-technical-profile.md) technical profile, you may want to send the user language, policy name, scope, and client ID. Based on these claims the REST API can run custom business logic, and if necessary raise a localized error message.
130
130
131
-
The following example shows a RESTful technical profile:
131
+
The following example shows a RESTful technical profile with this scenario:
132
132
133
133
```XML
134
134
<TechnicalProfileId="REST">
@@ -156,9 +156,9 @@ Using claim resolvers, you can prepopulate the sign-in name or direct sign-in to
156
156
157
157
### Dynamic UI customization
158
158
159
-
Azure AD B2C enables you to pass query string parameters to your HTML content definition endpoints so that you can dynamically render the page content. For example, you can change the background image on the Azure AD B2C sign-up or sign-in page based on a custom parameter that you pass from your web or mobile application. For more information, see [Dynamically configure the UI by using custom policies in Azure Active Directory B2C](custom-policy-ui-customization-dynamic.md). You can also localize your HTML page based on a language parameter, or you can change the content based on the client ID.
159
+
Azure AD B2C enables you to pass query string parameters to your HTML content definition endpoints to dynamically render the page content. For example, this allows the ability to modify the background image on the Azure AD B2C sign-up or sign-in page based on a custom parameter that you pass from your web or mobile application. For more information, see [Dynamically configure the UI by using custom policies in Azure Active Directory B2C](custom-policy-ui-customization-dynamic.md). You can also localize your HTML page based on a language parameter, or you can change the content based on the client ID.
160
160
161
-
The following example passes in the query string a parameter named **campaignId** with a value of `hawaii`, a **language** code of `en-US`, and **app** representing the client ID:
161
+
The following example passes in the query string parameter named **campaignId** with a value of `hawaii`, a **language** code of `en-US`, and **app** representing the client ID:
162
162
163
163
```XML
164
164
<UserJourneyBehaviors>
@@ -170,7 +170,7 @@ The following example passes in the query string a parameter named **campaignId*
170
170
</UserJourneyBehaviors>
171
171
```
172
172
173
-
As a result Azure AD B2C sends the above parameters to the HTML content page:
173
+
As a result, Azure AD B2C sends the above parameters to the HTML content page:
@@ -207,7 +207,7 @@ With Azure Application Insights and claim resolvers you can gain insights on use
207
207
208
208
### Relying party policy
209
209
210
-
In a [Relying party](relyingparty.md) policy technical profile, you may want to send the tenant ID, or correlation ID to the relying party application.
210
+
In a [Relying party](relyingparty.md) policy technical profile, you may want to send the tenant ID, or correlation ID to the relying party application within the JWT.
0 commit comments