Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OAuth in google app engine

I am trying to implement Oauth in google app engine on python. For my application i am using gae sessions and my model to authenticate users. It will be more helpful for me. .If you could provide some examples..

like image 950
Abdul Kader Avatar asked Mar 09 '11 12:03

Abdul Kader


2 Answers

You might want to check out the following resources:

The App Engine OAuth Library, which has support for Dropbox, Twitter, MySpace, and LinkedIn.

The Tipfy Framework (EDIT: links removed to the now defunct tipfy.org).

Using those as a basis, even if you can't use the libraries themselves, you'll have some solid, working examples of how to use OAuth on App Engine.

like image 75
Ezra Avatar answered Oct 24 '22 04:10

Ezra


here's an alternative that supports oauth 1.0, 2.0 and openid:

https://github.com/crhym3/simpleauth

like image 42
alex Avatar answered Oct 24 '22 05:10

alex