Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions auth0/authentication/get_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,48 @@ def backchannel_login(
"grant_type": grant_type,
},
)

def federated_connection_access_token(
self,
subject_token_type: str,
subject_token: str,
requested_token_type: str,
login_hint: str | None = None,
scope: str | None = None,
connection: str | None = None,
grant_type: str = "urn:auth0:params:oauth:grant-type:token-exchange:federated-connection-access-token"
) -> Any:
"""Calls /oauth/token endpoint with federated-connection-access-token grant type

Args:
subject_token_type (str): String containing the type of token.

subject_token (str): String containing the value of subject_token_type.

requested_token_type (str): String containing the type of rquested token.

connection (str, optional): Denotes the name of a social identity provider configured to your application

login_hint (str, optional): String containing information about the user to contact for authentication.

scope(str, optional): String value of the different scopes the client is asking for.
Multiple scopes are separated with whitespace.


Returns:
access_token, scope, issued_token_type, token_type
"""

return self.authenticated_post(
f"{self.protocol}://{self.domain}/oauth/token",
data={
"client_id": self.client_id,
"grant_type": grant_type,
"subject_token_type": subject_token_type,
"subject_token": subject_token,
"requested_token_type": requested_token_type,
"login_hint": login_hint,
"connection": connection,
"scope": scope,
},
)
43 changes: 43 additions & 0 deletions auth0/management/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,3 +538,46 @@ def delete_authentication_method_by_id(

url = self._url(f"{user_id}/authentication-methods/{authentication_method_id}")
return self.client.delete(url)

def list_tokensets(
self, id: str, page: int = 0, per_page: int = 25, include_totals: bool = True
):
"""List all the tokenset(s) associated to the user.

Args:
id (str): The user's id.

page (int, optional): The result's page number (zero based). By default,
retrieves the first page of results.

per_page (int, optional): The amount of entries per page. By default,
retrieves 25 results per page.

include_totals (bool, optional): True if the query summary is
to be included in the result, False otherwise. Defaults to True.

See https://auth0.com/docs/api/management/v2#!/Users/get_tokensets
"""

params = {
"per_page": per_page,
"page": page,
"include_totals": str(include_totals).lower(),
}
url = self._url(f"{id}/tokensets")
return self.client.get(url, params=params)

def delete_tokenset_by_id(
self, user_id: str, tokenset_id: str
) -> Any:
"""Deletes an tokenset by ID.

Args:
user_id (str): The user_id to delete an authentication method by ID for.
tokenset_id (str): The tokenset_id to delete an tokenset by ID for.

See: https://auth0.com/docs/api/management/v2#!/Users/delete_tokenset_by_id
"""

url = self._url(f"{user_id}/tokensets/{tokenset_id}")
return self.client.delete(url)
33 changes: 33 additions & 0 deletions auth0/test/authentication/test_get_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,4 +334,37 @@ def test_backchannel_login(self, mock_post):
"auth_req_id": "reqid",
"grant_type": "urn:openid:params:grant-type:ciba",
},
)

@mock.patch("auth0.rest.RestClient.post")
def test_federated_login(self, mock_post):
g = GetToken("my.domain.com", "cid", client_secret="csec")

g.federated_login(
grant_type="urn:auth0:params:oauth:grant-type:token-exchange:federated-connection-access-token",
subject_token_type="urn:ietf:params:oauth:token-type:refresh_token",
subject_token="refid",
requested_token_type="http://auth0.com/oauth/token-type/federated-connection-access-token",
connection="google-oauth2",
login_hint="idp_user_id"
)

args, kwargs = mock_post.call_args

print(kwargs["data"])

self.assertEqual(args[0], "https://my.domain.com/oauth/token")
self.assertEqual(
kwargs["data"],
{
"grant_type": "urn:auth0:params:oauth:grant-type:token-exchange:federated-connection-access-token",
"client_id": "cid",
"client_secret": "csec",
"subject_token_type": "urn:ietf:params:oauth:token-type:refresh_token",
"subject_token": "refid",
"requested_token_type": "http://auth0.com/oauth/token-type/federated-connection-access-token",
"connection": "google-oauth2",
"login_hint": "idp_user_id",
"scope": None,
},
)
33 changes: 33 additions & 0 deletions auth0/test/management/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,3 +403,36 @@ def test_delete_authentication_method_by_id(self, mock_rc):
mock_instance.delete.assert_called_with(
"https://domain/api/v2/users/user_id/authentication-methods/authentication_method_id"
)

@mock.patch("auth0.management.users.RestClient")
def test_list_tokensets(self, mock_rc):
mock_instance = mock_rc.return_value

u = Users(domain="domain", token="jwttoken")
u.list_tokensets("an-id")

args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/users/an-id/tokensets", args[0])
self.assertEqual(
kwargs["params"], {"per_page": 25, "page": 0, "include_totals": "true"}
)

u.list_tokensets(id="an-id", page=1, per_page=50, include_totals=False)

args, kwargs = mock_instance.get.call_args

self.assertEqual("https://domain/api/v2/users/an-id/tokensets", args[0])
self.assertEqual(
kwargs["params"], {"per_page": 50, "page": 1, "include_totals": "false"}
)

@mock.patch("auth0.management.users.RestClient")
def test_delete_tokenset_by_id(self, mock_rc):
mock_instance = mock_rc.return_value

u = Users(domain="domain", token="jwttoken")
u.delete_tokenset_by_id("user_id", "tokenset_id")

mock_instance.delete.assert_called_with(
"https://domain/api/v2/users/user_id/tokensets/tokenset_id"
)
Loading