Magento – SSO for the admin area

admin

So, given 2 magento sites, and soon to be 3, I would like to implement some kind of SSO between the admin areas of the given sites. AD/Kerberos integration would be sweet, but any other option would be great to have (separate SAML provider, OAuth, whatever works to have the guys have the same user pass between sites and not have them to separately login in every admin area).

I haven't found yet any extension to do that, and I'm not sure where to start (I'm not a dev, but I would like at least to know what to ask from the devs).

Best Answer

Magento can be used as a OAuth server, but afaik only for the customer accounts.

But you can implement your own stuff. We hacked a few month ago a framework for this:

https://github.com/magento-hackathon/LoginProviderFramework

You may have a look on it.

Related Topic