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.
### Exchange the Authorization Code - /oauth/token
133
129
134
-
Creates a new request to log in the user with a`code` previously obtained by calling the /authorize endpoint. The redirect uri must be the one sent in the /authorize call.
130
+
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.
@@ -104,15 +104,15 @@ public AuthorizeUrlBuilder authorize(String redirectUri) {
104
104
* @param setClientId whether the client_id value must be set or not. This affects the white-list that the Auth0's Dashboard uses to validate the returnTo url.
105
105
* @return a new instance of the {@link AuthorizeUrlBuilder} to configure.
0 commit comments