Google Apps API(日历v3)会返回404错误

时间:2012-05-06 07:59:56

标签: api calendar

我一直在使用Google API(日历v3)一段时间没有问题,直到一周前我开始收到错误消息。我仍然可以授权,但我发出的任何请求都会返回404错误。我还尝试使用其他Google Apps帐户并遇到同样的问题。

// Load the API and make an API call.
function makeApiCall() {
    gapi.client.load('calendar', 'v3', function() { 
        var request = gapi.client.calendar.events.list({ 
            'calendarId': 'primary' 
        }); 
        request.execute(function(resp) { 
            console.log (resp);
        }); 
    }); 
}

控制台日志是: 代码:404 数据:数组[1] 错误:对象 未找到信息” proto :对象

1 个答案:

答案 0 :(得分:0)

此处是已打开的Google代码issue-33的链接。以防其他人在尝试寻找解决方案时首先发现这一点。