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.
47
+
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 Applications 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 Dashboard, depending on the value of `setClientId` this configuration should be set in the Client or in the Tenant. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
62
+
Creates a `LogoutUrlBuilder` to log out the user. The `returnToUrl` must be white-listed in the "Allowed Logout URLs" section of the Dashboard, depending on the value of `setClientId` this configuration should be set in the Application or in the Tenant Settings. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
The implementation is based on the [Management API Docs](https://auth0.com/docs/api/management/v2).
251
251
252
-
Create a `ManagementAPI` instance by providing the domain from the [client dashboard](https://manage.auth0.com/#/clients) and a valid API Token.
252
+
Create a `ManagementAPI` instance by providing the domain from the [Application dashboard](https://manage.auth0.com/#/applications) and a valid API Token.
@@ -546,7 +546,7 @@ For more information about [auth0](http://auth0.com) check our [documentation pa
546
546
547
547
Auth0 helps you to:
548
548
549
-
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
549
+
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
550
550
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
551
551
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
552
552
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
Copy file name to clipboardExpand all lines: src/main/java/com/auth0/client/auth/AuthAPI.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
12
12
/**
13
13
* Class that provides an implementation of some of the Authentication and Authorization API methods defined in https://auth0.com/docs/api/authentication.
14
-
* To begin create a new instance of {@link #AuthAPI(String, String, String)} using the tenant domain, client id and client secret.
14
+
* To begin create a new instance of {@link #AuthAPI(String, String, String)} using the tenant domain, and the Application's client id and client secret.
15
15
*/
16
16
@SuppressWarnings("WeakerAccess")
17
17
publicclassAuthAPI {
@@ -40,11 +40,11 @@ public class AuthAPI {
40
40
privatefinalHttpLoggingInterceptorlogging;
41
41
42
42
/**
43
-
* Create a new instance with the given tenant's domain, client id and client secret. These values can be obtained at https://manage.auth0.com/#/clients/{YOUR_CLIENT_ID}/settings.
43
+
* Create a new instance with the given tenant's domain, application's client id and client secret. These values can be obtained at https://manage.auth0.com/#/applications/{YOUR_CLIENT_ID}/settings.
44
44
*
45
45
* @param domain tenant's domain.
46
-
* @param clientId the client's id.
47
-
* @param clientSecret the client's secret.
46
+
* @param clientId the application's client id.
47
+
* @param clientSecret the application's client secret.
@@ -137,7 +137,7 @@ public AuthorizeUrlBuilder authorizeUrl(String redirectUri) {
137
137
* }
138
138
* </pre>
139
139
*
140
-
* @param returnToUrl the redirect_uri value to set, white-listed in the client settings. Must be already URL Encoded.
140
+
* @param returnToUrl the redirect_uri value to set, white-listed in the Application settings. Must be already URL Encoded.
141
141
* @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.
142
142
* @return a new instance of the {@link LogoutUrlBuilder} to configure.
Copy file name to clipboardExpand all lines: src/main/java/com/auth0/client/auth/LogoutUrlBuilder.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,10 @@ public class LogoutUrlBuilder {
20
20
* Creates a instance of the {@link LogoutUrlBuilder} using the given domain and base parameters.
21
21
*
22
22
* @param baseUrl the base url constructed from a valid domain.
23
-
* @param clientId the client_id value to set
23
+
* @param clientId the application's client_id value to set
24
24
* @param returnToUrl the returnTo value to set. Must be already URL Encoded and must be white-listed in your Auth0's dashboard.
25
25
* @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.
26
-
* If the client_id is set, the white-list is read from the Client configuration. If the client_id is not set, the white-list is read from the Tenant configuration.
26
+
* If the client_id is set, the white-list is read from the Application's settings. If the client_id is not set, the white-list is read from the Tenant's settings.
27
27
* @return a new instance of the {@link LogoutUrlBuilder} to configure.
Copy file name to clipboardExpand all lines: src/main/java/com/auth0/client/mgmt/ClientsEntity.java
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
importjava.util.List;
14
14
15
15
/**
16
-
* Class that provides an implementation of the Clients methods of the Management API as defined in https://auth0.com/docs/api/management/v2#!/Clients
16
+
* Class that provides an implementation of the Application methods of the Management API as defined in https://auth0.com/docs/api/management/v2#!/Clients
@@ -23,7 +23,7 @@ public class ClientsEntity extends BaseManagementEntity {
23
23
}
24
24
25
25
/**
26
-
* Request all the ClientsEntity. A token with scope read:clients is needed. If you also need the client_secret and encryption_key attributes the token must have read:client_keys scope.
26
+
* Request all the Applications. A token with scope read:clients is needed. If you also need the client_secret and encryption_key attributes the token must have read:client_keys scope.
27
27
* See https://auth0.com/docs/api/management/v2#!/Clients/get_clients
28
28
*
29
29
* @return a Request to execute.
@@ -41,10 +41,10 @@ public Request<List<Client>> list() {
41
41
}
42
42
43
43
/**
44
-
* Request a Client. A token with scope read:clients is needed. If you also need the client_secret and encryption_key attributes the token must have read:client_keys scope.
44
+
* Request an Application. A token with scope read:clients is needed. If you also need the client_secret and encryption_key attributes the token must have read:client_keys scope.
45
45
* See https://auth0.com/docs/api/management/v2#!/Clients/get_clients_by_id
46
46
*
47
-
* @param clientId the client id.
47
+
* @param clientId the application's client id.
48
48
* @return a Request to execute.
49
49
*/
50
50
publicRequest<Client> get(StringclientId) {
@@ -63,10 +63,10 @@ public Request<Client> get(String clientId) {
63
63
}
64
64
65
65
/**
66
-
* Create a new Client. A token with scope create:clients is needed.
66
+
* Create a new Application. A token with scope create:clients is needed.
67
67
* See https://auth0.com/docs/api/management/v2#!/Clients/post_clients
68
68
*
69
-
* @param client the client data to set.
69
+
* @param client the application data to set.
70
70
* @return a Request to execute.
71
71
*/
72
72
publicRequest<Client> create(Clientclient) {
@@ -85,10 +85,10 @@ public Request<Client> create(Client client) {
85
85
}
86
86
87
87
/**
88
-
* Delete an existing Client. A token with scope delete:clients is needed.
88
+
* Delete an existing Application. A token with scope delete:clients is needed.
89
89
* See https://auth0.com/docs/api/management/v2#!/Clients/delete_clients_by_id
90
90
*
91
-
* @param clientId the client id.
91
+
* @param clientId the application's client id.
92
92
* @return a Request to execute.
93
93
*/
94
94
publicRequestdelete(StringclientId) {
@@ -106,11 +106,11 @@ public Request delete(String clientId) {
106
106
}
107
107
108
108
/**
109
-
* Update an existing Client. A token with scope update:clients is needed. If you also need to update the client_secret and encryption_key attributes the token must have update:client_keys scope.
109
+
* Update an existing Application. A token with scope update:clients is needed. If you also need to update the client_secret and encryption_key attributes the token must have update:client_keys scope.
110
110
* See https://auth0.com/docs/api/management/v2#!/Clients/patch_clients_by_id
Copy file name to clipboardExpand all lines: src/main/java/com/auth0/client/mgmt/ConnectionsEntity.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
importjava.util.Map;
15
15
16
16
/**
17
-
* Class that provides an implementation of the Clients methods of the Management API as defined in https://auth0.com/docs/api/management/v2#!/Connections
17
+
* Class that provides an implementation of the Connections methods of the Management API as defined in https://auth0.com/docs/api/management/v2#!/Connections
0 commit comments