Rule #6 of the Facebook developer policy says I must provide an explicit Log out link, but I'm unable to make it work.

My goal is to either sign my application out of Facebook, the user from the entire Facebook experience environment, or both. So far, I can't do any of these.

This may be complicated by the fact I'm using Azure ACS and am not using the typical FB APIs. Things I've tried include:

Attempt 1: Facebook OAuth Logout

 "http://www.facebook.com/logout.php?api_key={0}&;session_key={1}";
 // I don't know how to get the session key.  I attempted the values stored in 
 // the claim  "http://www.facebook.com/claims/AccessToken" but no luck

Attempt 2: ACS logout (undocumented?)

https://tlsadmin.accesscontrol.windows.net/v2/wsfederation?wa=wsignoutcleanup1.0 

Neither of these approaches allow an alternate Facebook user to sign in. Any links would be appreciated.

Simplified Question

How do I get *.accescontrol.windows.net to redirect back to my website?

link|improve this question

74% accept rate
feedback

2 Answers

As this post suggests: Azure AppFabric Access Control Service Log Off, you can create a custom log out button, and simply call the ederatedAuthentication.WSFederationAuthenticationModule.SignOut method on the click of the button. ACS then should handle the log out process for you.

link|improve this answer
That code expires the FAM cookie, but doesn't perform a redirect to the providers... well at least not in my setup which is based on the sample MVC local forms sign-in – makerofthings7 Oct 6 '11 at 6:27
feedback

Generally speaking there are two or three steps to federated sign out - locally you need to remove the forms auth cookie if one was used as well as the FIM cookie, this will sign out from the local application.

You then need to issue wasignoutcleanup10 request to the STS used, which would sign you out from the STS itself and, in theory, shoud issue a wasignoutcleanup1.0 request (or equivalent) to all the other IPs that were involved in the process (the STS should keep track of which IPs were contacted for each request)

I built such scenario once using Windows Identity Foundation which has the components needed, but it did require some development to keep track of the all the IPs and issue the calls.

I suspect that the ACS currently does not support this behaviour meaning that a user will have to close the browser to fully sign-out from all the applications.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.