0

我需要使用 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 "接受:应用程序/json”-H“内容类型:应用程序/json”-d'{“client_id”:“{myId}”,“client_secret”:“{mySecretId}”,“grant_type”:“refresh_token”,“refresh_token” :“{myRefreshToken}”}' https://accounts.google.com/o/oauth2/token

4

1 回答 1

1

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

于 2013-10-04T18:38:26.970 回答