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
Copy file name to clipboardExpand all lines: EXAMPLES.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
-[Authentication SDK](#authentication-sdk)
4
4
-[ID token validation](#id-token-validation)
5
-
-[Authenticating with a application configured to use `private_key_jwt` token endpoint auth method.](#authenticating-with-a-application-configured-to-use-private-key-jwt-token-endpoint-auth-method)
5
+
-[Authenticating with a application configured to use `private_key_jwt` token endpoint auth method](#authenticating-with-a-application-configured-to-use-private-key-jwt-token-endpoint-auth-method)
6
6
-[Management SDK](#management-sdk)
7
7
-[Connections](#connections)
8
8
-[Error handling](#error-handling)
@@ -50,7 +50,7 @@ tv.verify(id_token)
50
50
51
51
If the token verification fails, a `TokenValidationError` will be raised. In that scenario, the ID token should be deemed invalid and its contents should not be trusted.
52
52
53
-
### Authenticating with a application configured to use `private_key_jwt` token endpoint auth method.
53
+
### Authenticating with a application configured to use `private_key_jwt` token endpoint auth method
Copy file name to clipboardExpand all lines: V4_MIGRATION_GUIDE.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,21 @@
3
3
Guide to migrating from `3.x` to `4.x`
4
4
5
5
-[Python <3.6 is no longer supported](#python-36-is-no-longer-supported)
6
-
-[Client ID and Client Secret are now specified in the constructor for Authentication Clients](#client-id-and-client-secret-are-now-specified-in-the-constructor-for-authentication-clients)
6
+
-[Client ID and client secret are now specified in the constructor for authentication clients](#client-id-and-client-secret-are-now-specified-in-the-constructor-for-authentication-clients)
7
7
-[AuthorizeClient and Logout have been removed](#authorizeclient-and-logout-have-been-removed)
8
8
9
9
## Python <3.6 is no longer supported
10
10
11
11
Python 3.5 and Python 2 are EOL and are no longer supported.
12
12
13
-
## Client ID and Client Secret are now specified in the constructor for Authentication Clients
13
+
## Client ID and client secret are now specified in the constructor for authentication clients
client_secret (str, optional): your application's client Secret
20
+
domain (str): The domain of your Auth0 tenant
21
+
client_id (str): Your application's client ID
22
+
client_secret (str, optional): Your application's client secret
23
23
client_assertion_signing_key (str, optional): Private key used to sign the client assertion JWT.
24
-
client_assertion_signing_alg (str, optional): Algorithm used to sign the client assertion JWT (Default RS256).
25
-
telemetry (bool, optional): Enable or disable Telemetry (defaults to True)
24
+
client_assertion_signing_alg (str, optional): Algorithm used to sign the client assertion JWT (defaults to 'RS256').
25
+
telemetry (bool, optional): Enable or disable telemetry (defaults to True)
26
26
timeout (float or tuple, optional): Change the requests connect and read timeout. Pass a tuple to specify both values separately or a float to set both to it. (defaults to 5.0 for both)
27
27
protocol (str, optional): Useful for testing. (defaults to 'https')
Copy file name to clipboardExpand all lines: auth0/v3/authentication/users.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ class Users(object):
9
9
"""Users client.
10
10
11
11
Args:
12
-
domain (str): The domain of your auth0 tenant
13
-
telemetry (bool, optional): Enable or disable Telemetry (defaults to True)
12
+
domain (str): The domain of your Auth0 tenant
13
+
telemetry (bool, optional): Enable or disable telemetry (defaults to True)
14
14
timeout (float or tuple, optional): Change the requests connect and read timeout. Pass a tuple to specify both values separately or a float to set both to it. (defaults to 5.0 for both)
15
15
protocol (str, optional): Useful for testing. (defaults to 'https')
0 commit comments