当我从 Google API 获得 access_token
时,它带有一个 expires_in
值。根据文档,该值表示“访问令牌的剩余生命周期”。
这个值的单位是什么?
规范说秒:
https://datatracker.ietf.org/doc/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 的观点,即谷歌不记录这一点是粗心的。
看看:https://developers.google.com/accounts/docs/OAuth2UserAgent#handlingtheresponse
它说:
响应中包含的其他参数包括 expires_in 和 token_type。这些参数以秒为单位描述令牌的生命周期...
由于没有公认的答案,我将尝试回答这个问题:
[s] - seconds
根据 Google OAuth2.0 for Client 文档,
expires_in -- 令牌失效前剩余的秒数。