Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
- [Using Custom Token Exchange with Auth0 Class](#using-custom-token-exchange-with-auth0-class)
- [With Organization Context](#with-organization-context)
- [Subject Token Type Requirements](#subject-token-type-requirements)
- [Native to Web SSO (Early Access)](#native-to-web-sso-early-access)
- [Native to Web SSO](#native-to-web-sso)
- [Overview](#native-to-web-sso-overview)
- [Prerequisites](#native-to-web-sso-prerequisites)
- [Using Native to Web SSO with Hooks](#using-native-to-web-sso-with-hooks)
Expand Down Expand Up @@ -1007,9 +1007,7 @@ For detailed examples of validating different token types in Actions, see:
- Validate token expiration, issuer, and audience claims
- Implement rate limiting for failed validations using `api.access.rejectInvalidSubjectToken()`

## Native to Web SSO (Early Access)

> ⚠️ **Early Access Feature**: Native to Web SSO is currently available in Early Access. To use this feature, you must have an Enterprise plan. For more information, see [Product Release Stages](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages).
## Native to Web SSO

### Native to Web SSO Overview

Expand Down
2 changes: 1 addition & 1 deletion example/src/screens/class-based/ClassProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class ClassProfileScreen extends Component<Props, State> {
/>
</Section>

<Section title="Native to Web SSO (Early Access)">
<Section title="Native to Web SSO">
<Text style={styles.description}>
Exchange your refresh token for a Session Transfer Token to enable
seamless SSO to your web application.
Expand Down
2 changes: 1 addition & 1 deletion example/src/screens/hooks/CredentialsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const CredentialsScreen = () => {
/>
</Section>

<Section title="Native to Web SSO (Early Access)">
<Section title="Native to Web SSO">
<Text style={styles.description}>
Exchange your refresh token for a Session Transfer Token to enable
seamless SSO to your web application.
Expand Down
Loading