我正在使用此版本的javascript并拥有此代码
gapi.client.load('calendar', 'v3', function() {
var request = gapi.client.calendar.events.list({
'calendarId': 'idofmycalendar@group.calendar.google.com'});
request.execute(function(resp) {console.log(resp);});
});
一切都好(我猜),我也公开了日历。但我总是得到" Access Not Configured"错误。同样,如果我把calendarId变为主要...对我错过了什么的任何想法?非常感谢!