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 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.
74
+
Creates a 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.
### Exchange the Authorization Code - /oauth/token
133
133
134
-
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.
134
+
Creates a 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.
154
+
Creates a 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
+
Creates a request to get a Token for the given Audience.
195
195
196
196
`AuthRequest requestToken(String audience)`
197
197
@@ -210,7 +210,7 @@ try {
210
210
211
211
### Revoke Refresh Token
212
212
213
-
Creates a new request to revoke an existing Refresh Token.
213
+
Creates a request to revoke an existing Refresh Token.
214
214
215
215
`Request<Void> revokeToken(String refreshToken)`
216
216
@@ -228,7 +228,7 @@ try {
228
228
229
229
### Renew Authentication
230
230
231
-
Creates a new request to renew the authentication and get fresh new credentials using a valid Refresh Token.
231
+
Creates a request to renew the authentication and get fresh new credentials using a valid Refresh Token.
232
232
233
233
`AuthRequest renewAuth(String refreshToken)`
234
234
@@ -249,7 +249,7 @@ try {
249
249
250
250
The implementation is based on the [Management API Docs](https://auth0.com/docs/api/management/v2).
251
251
252
-
Create a new `ManagementAPI` instance by providing the domain from the [client dashboard](https://manage.auth0.com/#/clients) and the API Token. Click [here](https://auth0.com/docs/api/management/v2#!/Introduction/Getting_an_API_token) for more information on how to obtain a valid API Token.
252
+
Create a `ManagementAPI` instance by providing the domain from the [client dashboard](https://manage.auth0.com/#/clients) and the API Token. Click [here](https://auth0.com/docs/api/management/v2#!/Introduction/Getting_an_API_token) for more information on how to obtain a valid API Token.
@@ -277,7 +277,7 @@ The Management API is divided into different entities. Each of them have the lis
277
277
278
278
#### List
279
279
280
-
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`.
280
+
Creates a 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`.
281
281
You can pass an optional Filter to narrow the results in the response.
282
282
283
283
`Request<UsersPage> list(UserFilter filter)`
@@ -297,7 +297,7 @@ try {
297
297
298
298
#### Get
299
299
300
-
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`.
300
+
Creates a 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`.
301
301
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.
320
+
Creates a request to create a User. An API Token with scope `create:users` is needed.
321
321
322
322
`Request<User> create(User user)`
323
323
@@ -336,7 +336,7 @@ try {
336
336
337
337
#### Delete
338
338
339
-
Creates a new request to delete a User. An API Token with scope `delete:users` is needed.
339
+
Creates a request to delete a User. An API Token with scope `delete:users` is needed.
340
340
341
341
`Request delete(String userId)`
342
342
@@ -354,7 +354,7 @@ try {
354
354
355
355
#### Update
356
356
357
-
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.
357
+
Creates a 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.
358
358
359
359
`Request<User> update(String userId, User user)`
360
360
@@ -373,7 +373,7 @@ try {
373
373
374
374
#### Get Guardian Enrollments
375
375
376
-
Creates a new request to list the User's Guardian Enrollments. An API Token with scope `read:users` is needed.
376
+
Creates a request to list the User's Guardian Enrollments. An API Token with scope `read:users` is needed.
0 commit comments