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
> In all the cases, the `user ID` parameter is the unique identifier of the auth0 account instance. i.e. in `google-oauth2|123456789` it would be the part after the '|' pipe: `123456789`.
3107
2881
3108
2882
## Token Validation
3109
2883
The ID token received as part of the authentication flow is should be verified following the [OpenID Connect specification](https://openid.net/specs/openid-connect-core-1_0.html).
Sign up a user and returns a challenge for key generation
98
98
99
+
- The Management API support has been removed. This includes the `UsersAPIClient` class, `ManagementException`, and `ManagementCallback`.
100
+
101
+
> **Note:** This only impacts you if your app used the Management API client (`UsersAPIClient`).
102
+
103
+
**Impact:** Any code that references `UsersAPIClient`, `ManagementException`, or `ManagementCallback` will no longer compile.
104
+
105
+
**Migration:** Instead of calling the Management API directly from your mobile app, expose dedicated endpoints in your own backend that perform the required operations, and call those from the app using the access token you already have.
106
+
107
+
For example, if you were reading or updating user metadata:
108
+
109
+
1. Create a backend endpoint (e.g. `PATCH /me/metadata`) that accepts the operation your app needs.
110
+
2. Call that endpoint from your app, passing the user's access token as a `Bearer` token in the `Authorization` header.
111
+
3. On your backend, obtain a machine-to-machine token via the Client Credentials flow and use it to call the Management API with the precise scopes required.
112
+
99
113
### DPoP Configuration Moved to Builder
100
114
101
115
The `useDPoP(context: Context)` method has been moved from the `WebAuthProvider` object to the login
0 commit comments