我无法弄清楚为什么我无法从我的应用程序内部刷新访问令牌。从api获取访问和刷新令牌就像一个魅力,但如果我想从谷歌oauth api获得一个新的访问令牌,它告诉我401 Unauthorized,我不知道为什么。
我回来的网址是
https://www.googleapis.com/oauth2/v3/token?client_id=***********.apps.googleusercontent.com&client_secret={*********}&refresh_token=**********&grant_type=refresh_token
无法加载资源:服务器响应状态为401(未授权)
这是我的功能:
function refreshAccessToken() {
googleapi.authorize({
client_id: clientID,
client_secret: apiKey,
refresh_token: localStorage.analyticsRefreshToken,
grant_type: 'refresh_token'
}).done(function(refData) {
console.log(refData);
})
}