Library for OAUTH2.0 Provider with Django-Nerel in Google AppEngine

I am developing an OAUTH 2.0 provider in the Google App Engine with Django-Nerel. For authentication, I provided my own user authentication, so I do not use Google accounts.

I did some research on the available OAUTH2.0 libraries to create oauth providers. oauth2app looks pretty promising since it also uses Django. Does anyone have experience using this library in the Google App Engine with Django-Nerel? Or can anyone recommend a library?

Thanks!

+4
source share
2 answers

As a result, I used oauth2app , and it took me a little change to work with django-nerel.

The only limitation is that the model classes in oauth2app use ManyToManyFields, and this is not supported in django-nerel, so I ended up changing them to ListFields. This leads to some minor changes with respect to queries made in the library.

In general, oauth2app can also be recommended in combination with django-nerel in Google App Engine.

0
source

I am currently using this

oauth2

Oauth is unknown to me, but this library helps me a lot.

There are also examples in the link to understand how this works.

0
source

All Articles