On Mon, Dec 1, 2014 at 11:44 AM, Nick Badal <[email protected]> wrote:
> Does anybody know if this is possible? > On Mon, Dec 1, 2014 at 9:36 PM, John Louis Del Rosario <[email protected]> wrote: > We use Python but we recently had to migrate from using OpenID to OAuth2. > The Users service doesn't work with OAuth2 (yet?). > Basically we had to stop using the built-in Users service and re-create > the functionality with OAuth2 behind the scenes. > +1. As John said, UserService isn't compatible with oauth2 right now. In your original post <https://groups.google.com/d/msg/google-appengine/2ujDGtjrkCk/nwF2S63Q8rIJ> you described attempting to use a Bearer token header; that's the correct design for oauth2 but there's no evidence that UserService utilizes that header or even pays attention to it. You'll need to use one of the auth flows described here: https://developers.google.com/accounts/docs/OAuth2 ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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.
