http://developer.linkedin.com/documents/authentication(部分:刷新访问令牌)
该段说
LinkedIn 访问令牌可在 60 天内刷新
另一方面,它还表示客户端应用程序可以跟踪令牌创建日期并将其与oauth_expires_in value
(以秒为单位)进行比较,并在需要时刷新令牌。
但是,oauth_expires_in=599
当我调用请求令牌端点时,我只得到(秒)。
当我检索 request token:
oauth_token=xxxxx&oauth_token_secret=xxxxx&oauth_callback_confirmed=true&xoauth_request_auth_url=https://api.linkedin.com/uas/oauth/authorize&
时,我得到以下响应:oauth_expires_in=599
我没有收到响应访问令牌请求的此类参数:
https[://]www[.]linkedin[.]com/uas/oauth/authorize/submit?oauth_token=xxx&oauth_verifier=xxx
有人可以解释一下吗?
PS:使用 [] 更改网址,因为由于缺乏声誉,它不允许我发布超过 2 个网址。
TIA。