[omaha] Google Application Engine

Matthew Nuzum newz at bearfruit.org
Wed Apr 9 05:47:21 CEST 2008


On Tue, Apr 8, 2008 at 9:12 PM, Jeff Hinrichs - DM&T <jeffh at dundeemt.com> wrote:
> Ok - so who else is dorking out and reading the docs right now?
>
> http://code.google.com/appengine/docs/
>
>  -jeff

I'm really impressed with the security model they have. It really
shows some excellent engineering behind the scenes.

I also like the authentication. Built in SSO as simple as :

from google.appengine.api import users

user = users.get_current_user()
if user:
    self.response.headers['Content-Type'] = 'text/plain'
    self.response.out.write('Hello, ' + user.nickname())
else:
    self.redirect(users.create_login_url(self.request.uri))

I'm only reading tonight but look forward to trying the code out.
-- 
Matthew Nuzum
newz2000 on freenode


More information about the Omaha mailing list