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
If you're migrating from a legacy authentication system or integrating with a custom identity provider, you can exchange external tokens for Auth0 tokens using the OAuth 2.0 Token Exchange specification (RFC 8693):
110
+
111
+
```python
112
+
from auth0_server_python.auth_types import LoginWithCustomTokenExchangeOptions
113
+
114
+
# Exchange a custom token and establish a session
115
+
result =await auth0.login_with_custom_token_exchange(
0 commit comments