Skip to content

Commit fdbe017

Browse files
authored
Merge pull request #189258 from amanmcse/patch-35
(AzureCXP) fixes MicrosoftDocs/azure-docs#88383
2 parents febc6e2 + ae8fbdd commit fdbe017

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

articles/active-directory-b2c/saml-service-provider-options.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -291,18 +291,20 @@ For example, when `TokenNotBeforeSkewInSeconds` is set to `120` seconds:
291291
You can specify whether milliseconds will be removed from date and time values within the SAML response. (These values include `IssueInstant`, `NotBefore`, `NotOnOrAfter`, and `AuthnInstant`.) To remove the milliseconds, set the `RemoveMillisecondsFromDateTime` metadata key within the relying party. Possible values: `false` (default) or `true`.
292292

293293
```xml
294-
<ClaimsProvider>
295-
<DisplayName>Token Issuer</DisplayName>
296-
<TechnicalProfiles>
297-
<TechnicalProfile Id="Saml2AssertionIssuer">
298-
<DisplayName>Token Issuer</DisplayName>
299-
<Protocol Name="SAML2"/>
300-
<OutputTokenFormat>SAML2</OutputTokenFormat>
294+
<RelyingParty>
295+
<DefaultUserJourney ReferenceId="SignUpOrSignIn" />
296+
<TechnicalProfile Id="PolicyProfile">
297+
<DisplayName>PolicyProfile</DisplayName>
298+
<Protocol Name="SAML2" />
301299
<Metadata>
302300
<Item Key="RemoveMillisecondsFromDateTime">true</Item>
303301
</Metadata>
304-
...
302+
<OutputClaims>
303+
...
304+
</OutputClaims>
305+
<SubjectNamingInfo ClaimType="objectId" ExcludeAsClaim="true" />
305306
</TechnicalProfile>
307+
</RelyingParty>
306308
```
307309

308310
## Use an issuer ID to override an issuer URI
@@ -395,4 +397,4 @@ By using these tools, you can check the integration between your application and
395397
<!-- LINKS - External -->
396398
[samltest]: https://aka.ms/samltestapp
397399

398-
::: zone-end
400+
::: zone-end

0 commit comments

Comments
 (0)