我正在尝试refresh an access token (offline access)
我致电了POST
这个请求
https://www.googleapis.com/oauth2/v4/token?refresh_token=xxx&client_id=xxx.apps.googleusercontent.com&client_secret=xxx&grant_type=refresh_token
响应应该是这样的
{
"access_token":"1/fFAGRNJru1FTz70BzhT3Zg",
"expires_in":3920,
"token_type":"Bearer"
}
但是我只得到404 Not Found
。
我的Google API调用有问题吗?
我已经设置了access_type=offline
。