How to get signed in user identity in a website after signing in with another website using ACS

184 Views Asked by At

I have one website which is configured to use Azure ACS. When the user signs to this website, how will I get the user identity when he visits another one of my website so that the user will not need to choose and sign in to his identity provider in ACS? Is there a way to get the user identity from ACS across multiple websites so that once a user logs in to one of my websites he will be recognized as a logged in user when he visits other ACS configured websites? BTW Im using all 4 social networking sites in azure ACS as identity providers.

1

There are 1 best solutions below

2
On

Each website is different from ACS perspective, so the tokens it will issue are also different. SSO however, happens at the IdP level:

  1. User logs in with Google (as an example) on WebSite 1.
  2. User goes to WebSite2, (with the same browser instance), WebSite2 redirects to ACS, ACS redirects to Google
  3. User is already authenticated with Google, comes back to ACS
  4. ACS issues a token (for WebSite2) and returns to WebSite2

ACS doesn't keep sessions with user so they will be forced to do the entire transaction at least once.

What could happen is that if you have 4 social IdP (Google, Live, FB, Yahoo presumably), in step 2, ACS will prompt the user for the IdP to use.

To avoid this, you have to send the login request to ACS with the whr parameter. You would have to remember which one was used by your user and instruct ACS to use that. With whr, there's no IdP prompt.