我需要使用 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