javascript – 使用Google Calendar API返回401(未经授权)
作者:互联网
我正在尝试通过JavaScript使用Google Calendar API,并在使用以下代码时不断收到401错误响应:
$.ajax({
dataType: "json",
url: "https://www.googleapis.com/calendar/v3/users/me/calendarList/<calendarID>?key=<my api key>",
success: function(result){
$('#result').html(result);
}
});
我使用API时有什么问题吗?我应该如何使用oAuth?我已经从Google控制台获得了clientID和secretID,但不知道如何使用它们.
谢谢.
解决方法:
以下是经过大量研究后的答案,我刚刚发现并使用本指南来使用谷歌日历api
http://googleappsdeveloper.blogspot.com/2011/12/using-new-js-library-to-unlock-power-of.html
然后我仍然感到困惑,因为api键不工作每次我都尝试重新生成它几次.然后我不得不使用浏览器密钥而没有任何引用,如下所述:Getting Error 403: Access Not Configured. Please use Google Developers Console to activate the API for your project
最后我把一切都搞定了.
这里也是理解OAuth2的主要文章
https://developers.google.com/accounts/docs/OAuth2
标签:http-status-code-401,javascript,json,api,google-calendar-api 来源: https://codeday.me/bug/20190830/1768793.html