Uber server_token是否会像access_token一样过期?
注意:访问令牌有效期为30天。到期时间在令牌有效负载的'expires_in'键中以秒为单位指定。
在server_token上找不到任何文档。 TIA
答案 0 :(得分:1)
不,server_token不会过期。可以更改的唯一方法是在仪表板中生成一个新方法。
答案 1 :(得分:0)
来自官方指南 Uber Authentication
strategy=mobile
access_token适用于描述的
{ "access_token": "xxx", "token_type": "Bearer", "expires_in": 2592000, "refresh_token": "xxx", "scope": "profile history" }
时间 expires_in秒。可以使用limited period
在给定调用的情况下随时获取新的access_token 应用程序仍然有权代表此访问API 用户。