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
scopes: The scopes required in the access token of the federated connection provider.
81
86
connection: The connection name of the federated connection provider.
82
-
refresh_token: Optional. The Auth0 refresh token to exchange for an federated connection access token. Can be:
87
+
refresh_token: Optional. The Auth0 refresh token to exchange for a federated connection access token. Can be:
83
88
- A string or None
84
89
- A callable that receives the tool input and returns the user refresh token (sync or async)
85
-
access_token: Optional. The federated connection access token if available in the tool context. Can be:
90
+
subject_access_token: Optional. The Auth0 *access token* (for the logged-in user) to exchange
91
+
for a federated connection access token via Token Vault. Can be:
92
+
- A string or None
93
+
- A callable that receives the tool input and returns the user access token (sync or async)
94
+
access_token: Optional. The *federated connection* access token if available in the tool context. Can be:
86
95
- A `TokenResponse`
87
96
- A callable that receives the tool input and returns a `TokenResponse` (sync or async)
88
97
store: Optional. An store used to temporarly store the authorization response data while the user is completing the authorization in another device (default: InMemoryStore).
0 commit comments