Posted by rbawaskar on Sat 28 Feb 2009 in Users API
This is very handy and quick trick using decorators thatt require users authentication using appengine's users api.
Posted by milan.andrejevic on Sun 18 Jan 2009 in Users API
def authorized_role(role, kind=""):
"""
A decorator to enforce user roles, currently 'user' (logged in)
'admin' and 'author' (owner of the ...
Posted by sudhir.j on Sun 07 Dec 2008 in Users API
I've needed to test my apps with authentication... and the combination of GAE Unit and Webtest is great, but ...
Posted by sandaya on Sun 26 Oct 2008 in Users API
@login_required
Posted by bwbensonjr on Fri 05 Sep 2008 in Users API
Some applications require that access be restricted to a particular set of users. The code in this example stores a ...
Posted by paul.marrington.net on Mon 01 Sep 2008 in Users API
Google App Engine was a bit of a shock to many application server developers - no sessions.
What is a Session ...