我将OAuth 与联合登录(混合协议)一起使用,以允许我的用户使用 openID 登录一次(效果很好),并同时使用 Google 数据 API 进行身份验证。
Zend_GData 库让我很头疼,所以根据这里某人的建议,我切换到LightOpenID。
openID 部分工作得很好,多亏了这个技巧,我能够添加 OAuth 扩展并收到如下响应:
http://www.example.com/checkauth
?openid.ns=http://specs.openid.net/auth/2.0
&openid.mode=id_res
&openid.op_endpoint=https://www.google.com/accounts/o8/ud
&openid.response_nonce=2009-01-17T00:11:20ZlJAgbeXUfSSSEA
&openid.return_to=http://www.example.com/checkauth
&openid.assoc_handle=AOQobUeYs1o3pBTDPsLFdA9AcGKlH
&openid.signed=op_endpoint,claimed_id,identity,return_to,response_nonce,assoc_handle,ns.ext2,ext2.consumer,ext2.scope,ext2.request_token
&openid.sig=oPvRr++f6%2ul/2ah2nOTg=
&openid.identity=https://www.google.com/accounts/o8/id/id=AItOawl27F2M92ry4jTdjiVx06tuFNA
&openid.claimed_id=https://www.google.com/accounts/o8/id/id=AItOawl27F2M92ry4jTdjiVx06tuFNA
&openid.ns.oauth=http://specs.openid.net/extensions/oauth/1.0
&openid.oauth.scope=http://docs.google.com/feeds/+http://spreadsheets.google.com/feeds/+http://sandbox.gmodules.com/api/
&openid.oauth.request_token=1/fVr0jVubFA83GjYUA
根据文档,openid.oauth.request_token
是一个授权的请求令牌,所以看来我不需要做这个OAuthAuthorizeToken
请求。到目前为止一切都很好,但现在我需要将此请求令牌交换为访问令牌和令牌秘密。
因为我不知道如何生成 OAuth 随机数和签名,所以我为 php 使用了OAuthSimple库。问题是,所需的代码如下所示:
// Build the request-URL...
$result = $oauth->sign(array(
'path' => 'https://www.google.com/accounts/OAuthGetAccessToken',
'parameters' => array(
'oauth_verifier' => $_GET['oauth_verifier'],
'oauth_token' => $_GET['oauth_token']),
'signatures' => $signatures));
它需要一个oauth_verifier
值,您将通过普通 OAuth 请求与请求令牌一起收到该值。我不确定是否是 OAuthSimple 库在尝试省略它时出错,或者它是否是 Google 的要求,但它不起作用。
所以,有人能发现我在这里做错了什么吗?