Abdul Kader
Abdul Kader

Reputation: 5842

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..

Upvotes: 8

Views: 3910

Answers (2)

Ezra
Ezra

Reputation: 7702

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.

Upvotes: 8

alex
alex

Reputation: 2451

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

https://github.com/crhym3/simpleauth

Upvotes: 4

Related Questions