We use Google Accounts for our application, which is a Django(trunk) /
app-engine-helper application.

Normally, on our views, we can just use

  @require_login

decorator, and everything works out.

However, in some cases, we are not able to pass the cookie that makes
this stuff work out well.

Is there a mechanism that we can use the ASCID ticket value and
validate that it is a valid login?

Imagine that we pass thie ASCID value as a request param and hit an
undecorated view like this:

  def my_view(request, ascid):
    auth.validate_ticket(ascid) # does some programmatic call like
this exist

Is there some way to programmatically validate the auth token for a
Google Account?

Aside: this is coming up because of a bug in Flash where the cookies
are not propagated when it posts back and so the auth fails.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to