Replies: 2 comments 1 reply
-
Did you ever figure this out? |
Beta Was this translation helpful? Give feedback.
-
I stumbled across this issue while looking into an unrelated issue about handling refresh tokens. For anyone else having this issue though... the Identity Center docs call out the difference between the refreshable "SSO token provider configuration" and a "legacy non-refreshable configuration". The refreshable setup requires both a reasonably current CLI version and If you happen to be using boto3 to register clients and create tokens without referencing an existing config file, you can define your scopes when registering a client: oidc_client.register_client(
clientName="my_client",
clientType="public",
scopes=["sso:account:access"],
) And then by default, the |
Beta Was this translation helpful? Give feedback.
-
When I call
The return I get is
However I was hoping to also get a refresh token, so that I can renew the session when it expires. Like so:
Any help in how to achieve this would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions