We're using GAE Python and allow users to login using their existing Google accounts. The login code is straightforward: def _require_login(self, target_url="/"): if not self.user_bundle.user: return self.redirect( self.user_bundle.create_login_url(target_url), abort= True )
This creates a redirect to Google for the user to login, then upon successful login gets sent back to wherever they were originally trying to navigate. The problem seems to be that if a user has more than a certain number of Google / GApps accounts logged in simultaneously (I can successfully reproduce it once I hit 5 accounts), they get an "Error 414" from Google: [image: Google Error 414] My brief search on the error states that the URL is too long, since it's a GET request. Just about all of the advice states to use POST instead. The problem is, we're using Google's built-in create_login_urlmethod, which, as far as I can tell, doesn't provide a way to specify POST instead of GET. How can we fix this? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
