Session share between server #2430
-
Is there any facility that will allow to share sessions between different server and not in same domains (nor subdomain). For instance, abc.com authenticates a user, can it login into xyz.com using same token as provided by abc.com? If so, what is the configuration that needs to be made? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I think you are confusing OAuth2 Access tokens with sessions.
Now what I believe you are looking for is for a way to use the same Access Token that you received at abc.com to authorize (! OAuth2 is NOT an authentication protocol) a user at xyz.com. So you want a way to specify multiple audiences in a single Access Token, correct? |
Beta Was this translation helpful? Give feedback.
-
You can specify multiple audiences in the OAuth 2.0 Client’s metadata on a per-client basis:
|
Beta Was this translation helpful? Give feedback.
You can specify multiple audiences in the OAuth 2.0 Client’s metadata on a per-client basis:
documentation