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.
How to get signed in user identity in a website after signing in with another website using ACS
189 Views Asked by AshT At
1
There are 1 best solutions below
Related Questions in ASP.NET-MVC-3
- Routing Url that has no action name
- ObjectContext is disposed, can not longer used
- Image Gallery control not loading
- Skip login on MVC 3 application (SSO)
- JSON object passed to Controller is NULL
- What is the best practice for maintain a menu after a page reload? I have this custom code which feels wrong
- RedirectToAction doesn't happen when I start with an AJAX call
- Create view for a child-master relationship
- How to create edit view with a dropdownlist
- Pathname modified with IE
- Getting the property send by api in mvc
- How to create a dynamic dropdown in mvc
- set font awesome icon into textbox
- MVC3 POST model binding not working for particular complex model
- check for value null on razor syntax
Related Questions in AZURE
- Why does Azure Auto-Scale scale go lower then minimum amount of instances?
- Data execution plan ended with error on DB restore
- Why does Azure CloudConfigurationManager.GetSetting return null
- Do I need other roles than Worker Role for a web site and service layer in Azure?
- Azure Web App PATH Variable Modification
- Azure Data Factory: LinkedService for AzureSql in failed state
- How To Update a Web Application In Azure and Keep The App Up the whole time
- Using Azure MobileServices library with my own LAN WebApi
- ionCube loader error on Azure IIS
- App crash (if closed) after click on notification
- How to get sql data bases instances in azure using java api
- I want to create file in azure share using python PUT requests but getting error signature not correct including headers
- Enabling OPTIONS method on Azure Cloud Service (to enable CORS)
- Redirecting subdomain to directory on Azure
- Kaltura account settings error
Related Questions in WIF
- Share Authentication between MVC applications through WIF
- In WCF/WIF how to merge up claims from two different client's custom sts's tokens
- Configuration WCF Client for WIF .NET 4.5
- The token resolver is unable to resolve the security key reference
- Wifi repeater and captive portal
- N-Tier Application Authentication (RabbitMQ as Broker and C# as Business Tier) - WIF possible?
- Get Friendly Name of claims from Identity
- DJI Phantom 3 standard Connectivity issue
- How to store user data on the server instead of cookies using Windows Identity Foundation
- Is it possible to sign in to ADFS federation with WIF client passing user name and password from client?
- .NET MVC5 w/ ADFS and Windows Authentication
- ADFS exception "AddressFilter mismatch at the EndpointDispatcher"
- How to secure my multi tenant webapp that is running on Azure
- Losing WIF Claim with load balanced server
- Windows Identity Foundation on Windows 10 Tech Preview
Related Questions in CLAIMS-BASED-IDENTITY
- Configuring MVC app using Auth0 for ClaimsIdentity and nameidentifier error msgs
- Share Authentication between MVC applications through WIF
- User is authorised when using IE but not Chrome/Firefox
- Retrieve information from Bearer Token
- Single sign-on flow using ASP.NET MVC + Active Directory
- Authorization Model: Context of Role?
- ASP .Net MVC and WCF Identity (Claims) Integration
- Should I store user data as claims or in a user profile table?
- ADFS – tokens and claims?
- Asp.net Identity SSO in multiple projects on localhost
- Best Practices for Roles vs. Claims in ASP.NET Identity
- MVC 5 OWIN login with claims and AntiforgeryToken. Do I miss a ClaimsIdentity provider?
- JWT ValidateToken overriding in C#
- Retrieve Userid from a claims in a cookie in Core MVC
- Get Friendly Name of claims from Identity
Related Questions in AZURE-ACS
- Retrieving Azure AD Group information with JWT
- Azure mobile services - multiple azure active directories
- How to "pre-authenticate" another user with Windows Azure Access Control?
- Windows azure storage membership blob permissions
- Programmatically get user identity from Azure ACS
- Test Azure Service Bus locally without any subscription or login
- How to detect in a SPA application (client-side) if a Windows ACS session expires
- ACS with custom home realm discovery page, how do I "detect" Azure AD vs Microsoft Account?
- Does Azure ACS support OpenID Connect providers?
- Azure servicebus topics subscriptions security using ACS
- SharePoint group claims through Azure Active Directory
- Referencing Azure ACS Cluster Master VM Public IP?
- How should I use SWT get User's information from Azure ACS
- Obtaining a SAML token from Azure ACS
- SSO using Windows Azure Active Dirctory
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Each website is different from ACS perspective, so the tokens it will issue are also different. SSO however, happens at the IdP level:
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.