I'm working on a app that requires the users to Authenticate with my
HOSTED Google domain. I can get the Auth=... id back with the first
response, but my users can't add the Authentication header to their
follow up requests because of their API restrictions. So I'm going to
need to allow them to send requests with the Auth as a GET param, then
I'll need to process that Auth in my HttpServlet in my app.

So sadly, it seems like I'm going to need to make a HTTP Request to
myself within the HTTP Request they send with the proper
Authentication header to serve them. What would be the optimal way to
implement this? Maybe a redirect? I hate to have two requests just
because of this issue. Maybe I can use something like the UserService
to pass the Auth param and get back the user account?

Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to