Reputation: 2476
I am trying out Flask-OpenID in App Engine. Flask-OpenID uses a 'store' to save authentication information. If I mention '/some/path' to save data, it doesn't work in App Engine, as it is read-only.
For Flask-OpenID to work, I have to write my own 'store' which uses App Engine's datastore or cloud storage. I have not much idea on how to write this store. Is there any document available, so that I can follow. It will be helpful if I get any input on writing the 'store' using Flask and App Engine.
Upvotes: 0
Views: 425
Reputation: 8221
Disclaimer: I am not the author of the framework, but I am using it everyday. You can start with gae-init which is a working example using Flask-OAuth for authentication. Login and other goodies are provided out of the box, and you can get an overview about it and educate yourself at docs which are still under construction.
Upvotes: 2