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.