当我从Google API获得access_token
时,它会带有expires_in
值。根据文档,此值指示“访问令牌的剩余生命周期”。
这个值的单位是多少?
答案 0 :(得分:87)
规范说秒:
http://tools.ietf.org/html/draft-ietf-oauth-v2-22#section-4.2.2
expires_in
OPTIONAL. The lifetime in seconds of the access token. For
example, the value "3600" denotes that the access token will
expire in one hour from the time the response was generated.
我同意OP的意见,谷歌不会记录这一点。
答案 1 :(得分:86)
查看:https://developers.google.com/accounts/docs/OAuth2UserAgent#handlingtheresponse
它说:
响应中包含的其他参数包括
expires_in
和token_type
。这些参数描述了令牌的生命周期 秒...
答案 2 :(得分:12)
由于没有接受的答案,我会尝试回答这个问题:
[s] - seconds
答案 3 :(得分:4)