当我access_token
从 Google API 获得一个时,它带有一个expires_in
值。根据文档,该值表示“访问令牌的剩余生命周期”。
这个值的单位是什么?
当我access_token
从 Google API 获得一个时,它带有一个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文档,