Lyft续订令牌无法正常工作

时间:2016-05-06 02:51:59

标签: authentication access-token

有没有人成功续订过访问令牌?

Lyft文档建议我们使用renew_token请求传递renew_token。但是没有API可以接收renew_token。要求用户每次授予访问权限都不是实施OAuth的实用方法。

https://developer.lyft.com/docs/authentication

这是lyft文档的链接。

1 个答案:

答案 0 :(得分:0)

你可能有这个工作,但只是为了确认文档中的例子正常工作

https://developer.lyft.com/docs/authentication

curl -X POST -H "Content-Type: application/json" \
     --user "<client_id>:<client_secret>" \
     -d '{"grant_type": "refresh_token", "refresh_token": <refresh_token>}' \
     'https://api.lyft.com/oauth/token'

响应以新的access_token

返回
{"token_type": "Bearer", "access_token": "XXX", "expires_in": 3600, "scope": "profile offline rides.read public rides.request"}