Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there are very similar questions and answers posted. And I have used them for reference, but I would like to throw a specific case out there. A way to implement Single Sign Out / Single Log Out across multiple domains.

From what I read it looks like the only way is using a server to server service, ie. tracking users by verifying that they have access with the SSO server, every pageload.

What I mean by Single Sign Out is that a user signed on at multiple sites can sign out by clicking a link to sign out from the current site (and not be redirected to signout pages on all other sites)

I have looked at OpenID server, but I dont believe it can be extended to support this. SimpleSAMLphp looks like a better alternative.

Discuss

share|improve this question

1 Answer

up vote 1 down vote accepted

You should store sessions data in some shared storage like database/Memcache using session identificators like user1194_dj1kldkjawi1ljidsa (1194 - user id). So then if you need to Sign Out on all domains, you need just to delete from session storage all entries with keys like user1194_*

share|improve this answer
This is what I came up with as well, but Im wondering why none of other SSO providers employ the same feature ? Google, facebook, openid, etc. Interestingly Google use an amalgamation of redirects and images which run scripts on other domains using src=. Maybe that is a possible answer. I don't like not being able to remove sessions in PHP not belonging to the current user. – Yarek T Oct 9 '10 at 0:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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