@@ -283,8 +283,6 @@ def federated_connection_access_token(
283283 subject_token_type : str ,
284284 subject_token : str ,
285285 requested_token_type : str ,
286- login_hint : str | None = None ,
287- scope : str | None = None ,
288286 connection : str | None = None ,
289287 grant_type : str = "urn:auth0:params:oauth:grant-type:token-exchange:federated-connection-access-token"
290288 ) -> Any :
@@ -297,13 +295,7 @@ def federated_connection_access_token(
297295
298296 requested_token_type (str): String containing the type of rquested token.
299297
300- connection (str, optional): Denotes the name of a social identity provider configured to your application
301-
302- login_hint (str, optional): String containing information about the user to contact for authentication.
303-
304- scope(str, optional): String value of the different scopes the client is asking for.
305- Multiple scopes are separated with whitespace.
306-
298+ connection (str, optional): Denotes the name of a social identity provider configured to your application
307299
308300 Returns:
309301 access_token, scope, issued_token_type, token_type
@@ -317,8 +309,6 @@ def federated_connection_access_token(
317309 "subject_token_type" : subject_token_type ,
318310 "subject_token" : subject_token ,
319311 "requested_token_type" : requested_token_type ,
320- "login_hint" : login_hint ,
321- "connection" : connection ,
322- "scope" : scope ,
312+ "connection" : connection ,
323313 },
324314 )
0 commit comments