GAE User Authentication

I am working on a project that will require user authentication. I am currently planning to launch a project on GAE. For various reasons, I would prefer to have my own authentication system, rather than using openid or google built into the authentication service. I looked high and low for the library but didn't seem to find anything. I looked through AuthKit and even found a project called AuthKitGAE https://github.com/Roosmaa/AuthKitGAE ; but the project has almost no documentation, and I don’t have much experience with Python, so no examples for work help. Do any of you know any good GAE authentication libraries, or should I just try to write my own?

+3
source share
3 answers

If you are ready to use django as a framework, you can make the django auth system work with it using a django-nerel:

http://www.allbuttonspressed.com/projects/djangoappengine . They are working hard to get support for non-relational databases, such as engine applications in Django. I actually tried this to host my django based site. It really works.

They created support for most django functions, with the exception of some.

+1
source

If you use Django in GAE, you can write your own auth system.

+1
source

, webapp, tipfy . tipfy.ext.auth. .

+1

Source: https://habr.com/ru/post/1781193/


All Articles