1

ユーザーに GMail アカウントをリンクさせたい Web サイトがあり、後で OAuth を介してユーザーの GMail アカウントにアクセスしたいと考えています。これにはGoogle の OpenID+OAuth (ハイブリッド プロトコル) を使用します。

上記のドキュメントに従うと、次のようになります-

openid.assoc_handle AOQobUfg8E9PvTYX1huZPleVGoSvky57TxLHMzI-Lxd87cDNwLyrutSm
openid.claimed_id   https://www.google.com/accounts/o8/id?id=AItOawlus8fqLMQGgfCCM6pDZGpuNjwQqqYMs4o
openid.ext1.mode    fetch_response
openid.ext1.type.email  http://axschema.org/contact/email
openid.ext1.value.email forward@gmail.com
**openid.ext2.request_token   4/C-VqYG9lRtJBKM9G15I-tFk58rOS**
openid.ext2.scope   https://mail.google.com/
openid.identity https://www.google.com/accounts/o8/id?id=AItOawlus8fqLMQGgfCCM6pDZGpuNjwQqqYMs4o
openid.mode id_res
openid.ns   http://specs.openid.net/auth/2.0
openid.ns.ext1  http://openid.net/srv/ax/1.0
openid.ns.ext2  http://specs.openid.net/extensions/oauth/1.0
openid.op_endpoint  https://www.google.com/accounts/o8/ud
openid.response_nonce   2011-05-07T18:38:37ZOEVDbKdW6d2g9A
openid.return_to    https://mysite.com/gmail_redir/
openid.sig  niD5l9V7cG+LOE2zYjJ6rS0Cdwc=
openid.signed   op_endpoint,claimed_id,identity,return_to,response_nonce,assoc_handle,ns.ext1,ns.ext2,ext1.mode,ext1.type.email,ext1.value.email,ext2.scope,ext2.request_token

ユーザーのGMailアカウントをクロールできるようにするはずのopenid.ext2.request_tokenを取得します。OAuth を介して。それはどのように機能しますか?アクセス トークン (つまり、oauth_access_secret と oauth_access_token) は必要ありませんか??

さらにリクエストを行う必要がありますか? この後の進め方わかる人いますか??

4

1 に答える 1

2

トークンを取得したら、

  1. それを承認してから
  2. アクセストークンと交換してください

http://code.google.com/apis/accounts/docs/OAuth.html#WorkingOauthをご覧ください

またはhttps://developers.google.com/accounts/docs/OAuth2(OAuth v2の場合)

于 2011-11-21T20:31:35.217 に答える