Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been working on a hybrid implementation of Google OpenID + OAuth 2.0 for a project. From what I understand, user authentication through OpenID can return a request token which you can turn around and exchange for an access token, without having to prompt the user for access (which is done during the OpenID authentication). Documentation for OAuth 2.0 + OpenID is a little scarce, and I am having difficulty exchanging the request token I receive from the OpenID authorization for an access token without having to perform the full OAuth request pipeline as well.

My OpenID request has the following data:

openid.ns.ext2=http://specs.openid.net/extensions/oauth/1.0&
openid.ext2.consumer=<consumer key>&
openid.ext2.scope=<docs feed>

I correctly receive a request token in the response along with the standard OpenID response. However, when I try to exchange the token (as documented here: https://developers.google.com/accounts/docs/OAuth2WebServer#handlingtheresponse), with the request:

code=<request_token>&
client_id=<client_id>&
client_secret=<client_secret>&
redirect_uri=<redirect_uri>&
grant_type=authorization_code

I receive an error=unauthorized_client response from Google. I am able to receive the access token correctly if I prompt for OAuth access after the user authenticates with OpenID, but this negates the benefit of OpenID authentication and authorization being handled in one step.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.