我正在尝试构建一个从用户的 Google 日历中获取事件的应用程序。一旦我获得了用户获得的授权码并被要求在另一个页面中输入,我尝试将其交换为 access_token。但是我在发送以检索令牌的发布请求中出现错误。
client_id=encodeURIComponent("id.apps.googleusercontent.com");
client_secret=encodeURIComponent("secret.apps.googleusercontent.com");
$.post("http://accounts.google.com/o/oauth2/token/code="+auth_code
+"&client_id="+client_id+"&client_secret="+client_secret
+"&redirect_uri=urn:ietf:wg:oauth:2.0:oob&grant_type=authorization_code",
function(response){
console.log('Response = '+ response);
}
);
有人可以告诉我发布请求中的错误吗?