Source code for auth0.v3.authentication.users

from .base import AuthenticationBase
import warnings


[docs]class Users(AuthenticationBase): """Userinfo related endpoints. Args: domain (str): Your auth0 domain (e.g: username.auth0.com) """
[docs] def userinfo(self, access_token): """Returns the user information based on the Auth0 access token. This endpoint will work only if openid was granted as a scope for the access_token. Args: access_token (str): Auth0 access token (obtained during login). Returns: The user profile. """ return self.get( url='{}://{}/userinfo'.format(self.protocol, self.domain), headers={'Authorization': 'Bearer {}'.format(access_token)} )
[docs] def tokeninfo(self, jwt): """Returns user profile based on the user's jwt Validates a JSON Web Token (signature and expiration) and returns the user information associated with the user id (sub property) of the token. Args: jwt (str): User's jwt Returns: The user profile. """ warnings.warn("/tokeninfo will be deprecated in future releases", DeprecationWarning) return self.post( url='{}://{}/tokeninfo'.format(self.protocol, self.domain), data={'id_token': jwt} )