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
Creates an `AuthorizeUrlBuilder` to authenticate the user with an OAuth provider. The `redirectUri` must be white-listed in the "Allowed Callback URLs" section of the Client Settings. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
Creates a `LogoutUrlBuilder` to log out the user. The `returnToUrl` must be white-listed in the "Allowed Logout URLs" section of the Client Settings. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
Creates a new request to get the user information associated to a given access token. This will only work if the token has been granted the `openid` scope.
Creates a new request to exchange the `code` previously obtained by calling the /authorize endpoint. The redirect uri must be the one sent in the /authorize call.
Creates a new request to log in the user with `username` and `password`. The connection used is the one defined as "Default Directory" in the account settings.
Creates a new request to get a Token for the given Audience.
194
195
195
-
`AuthRequest requestToken("{AUDIENCE}")`
196
+
`AuthRequest requestToken(String audience)`
196
197
197
198
Example:
198
199
```java
@@ -243,7 +244,7 @@ The Management API is divided into different entities. Each of them have the lis
243
244
Creates a new request to list the Users. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
244
245
You can pass an optional Filter to narrow the results in the response.
245
246
246
-
`Request<UsersPage> list({FILTER})`
247
+
`Request<UsersPage> list(UserFilter filter)`
247
248
248
249
Example:
249
250
```java
@@ -263,7 +264,7 @@ try {
263
264
Creates a new request to get a User. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
264
265
You can pass an optional Filter to narrow the results in the response.
Creates a new request to create a new User. An API Token with scope `create:users` is needed.
284
285
285
-
`Request<User> create({DATA})`
286
+
`Request<User> create(User user)`
286
287
287
288
Example:
288
289
```java
@@ -301,7 +302,7 @@ try {
301
302
302
303
Creates a new request to delete a User. An API Token with scope `delete:users` is needed.
303
304
304
-
`Request delete("{USER_ID}")`
305
+
`Request delete(String userId)`
305
306
306
307
Example:
307
308
```java
@@ -319,7 +320,7 @@ try {
319
320
320
321
Creates a new request to update a User. An API Token with scope `update:users` is needed. If you're updating app_metadata you'll also need `update:users_app_metadata` scope.
321
322
322
-
`Request<User> update("{USER_ID}", {DATA})`
323
+
`Request<User> update(String userId, User user)`
323
324
324
325
Example:
325
326
```java
@@ -338,7 +339,7 @@ try {
338
339
339
340
Creates a new request to list the User's Guardian Enrollments. An API Token with scope `read:users` is needed.
0 commit comments