I'm trying to use OpenID with AppEngine, and I've setup a simple /_ah/login
page for signing in with Google.
But it seems when I use users.create_login_url(dest_url='/some/page?foo=bar&fizz=buzz')
, which returns:
https://myapp.appspot.com/_ah/login_redir?claimid=https://www.google.com/accounts/o8/id&continue=https://myapp.appspot.com/some/page?foo=bar&fizz=buzz
when eventually I'm redirected to the dest_url
, the second parameter (fizz=buzz
) is missing.
Is this a bug/limitation on create_login_url()
?