Skip to content
Merged
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: 3 additions & 3 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,8 @@ async function performTokenExchange() {
// Note: exchangeToken() is deprecated - use loginWithCustomTokenExchange() instead
```

> ⚠️ **Deprecated** — `exchangeToken()` will be removed in the next major version. Use `loginWithCustomTokenExchange()` instead.

### Required Auth0 Configuration

1. **Create Token Exchange Profile** in Auth0 Dashboard:
Expand Down Expand Up @@ -1456,9 +1458,7 @@ const emailEnrollment = await auth0.mfa.enroll({
email: 'user@example.com'
});

const oobCode = voiceEnrollment.oobCode; // Use this code to complete enrollment verification

// Use this code to complete enrollment verification
const oobCode = emailEnrollment.oobCode; // Use this code to complete enrollment verification
```

#### Enrolling Push Notification
Expand Down
Loading