无法使用Json刷新令牌

时间:2013-10-04 15:27:14

标签: google-oauth

我需要使用json格式刷新我的GA令牌,但我无法让它工作。它使用参数很好用。如果您发现任何缺陷,请告诉我!致谢!!!!

作品(没有json)======================================== curl -d“client_id = {myId}& client_secret = {mySecretId}& grant_type = refresh_token& refresh_token = {myRefreshToken}”https://accounts.google.com/o/oauth2/token

不起作用(json)===================================== curl -H“Accept:application / json”-H“Content-type:application / json”-d'{“client_id”:“{myId}”,“client_secret”:“{mySecretId}”,“grant_type”:“ refresh_token“,”refresh_token“:”{myRefreshToken}“}'https://accounts.google.com/o/oauth2/token

1 个答案:

答案 0 :(得分:1)

请参阅https://developers.google.com/accounts/docs/OAuth2WebServer#refresh - 此特定流程仅适用于application / x-www-form-urlencoded