Write SSO App on GAE

I am looking for a solution for implementing a single sign-on (SSO) application, and this application should be in python and work in GAE (Google App Engine). These applications must be implemented using the SAML protocol , as Google Apps offers SAML-based Single-Sign On.

In my case, I could not use OpenId because I would allow access to an external identifier, and I need my clients to be able to enter my applications only with Google Apps accounts, then their credentials will be ID. After logging in, they can access any applications offered by my company.

I saw Gheimdall , but I could not install it completely for testing, this application is very difficult to make a proof of conceptual design, the last release was in 2008, and their documentation is poor.

Does anyone know a solution or hint to my problem?

+5
source share
1 answer

Take a look at PySAML2 , it should work with App Engine:

PySAML2 - SAML2 , . WSGI , .

+2

All Articles