我尝试通过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
,但我们不知道如何使用它们。
感谢。
答案 0 :(得分:3)
经过大量研究后,我找到并使用本指南使用谷歌日历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
答案 1 :(得分:2)
要使用Google Calendar API,您不仅需要客户端ID和客户端密码,而且在大多数情况下(访问公共日历除外)您还需要对用户进行身份验证。实现这一目标的一种方法是使用Oauth2。
我建议您使用可在此处下载的客户端库:https://developers.google.com/google-apps/calendar/downloads
此处还有一个关于如何使用库的示例:https://developers.google.com/api-client-library/javascript/samples/samples