4

我正在尝试使用 JS 客户端库订阅日历事件通知,如下所示:

gapi.client.load('calendar', 'v3', function () {
            var request = gapi.client.calendar.events.watch({
                'calendarId': cl.gCalendarID,
                'id': unid,
                'type': "web_hook",
                'address': {my url here}
            });
            request.execute(function (resp) {
                console.log(resp);
            });
        });

但我只是不断收到 400 条返回的无用信息“ Entity.Resource

在我得到的响应的数据对象中Domain:global, Message: Entity.Resource, reason: Required"

我已经通过 oauth2 进行了身份验证,并且我已授予使用我的 Google 帐户的访问权限,并且我可以成功检索日历列表并且我正在从它们的日历中检索事件,但是这种订阅手表的方法不起作用?请帮助我在 Google 上找不到任何关于此的内容。

4

2 回答 2

6
Instead of this:


 var request = gapi.client.calendar.events.watch({
                'calendarId': cl.gCalendarID,
                'id': unid,
                'type': "web_hook",
                'address': {my url here}
            });

你使用这个语法:

calendar.events.watch({
            auth: auth,
                resource: {
                    id: "12345",
                    type: 'web_hook',
                    address: {mu url here}
                 },
                calendarId: 'primary' 

            }, function(err, response) {
                if (err) {
                    logger.MessageQueueLog.log("info","index.js:- watchnotification(),Error in Watch Notification: " + err);

                } else {          
                   logger.MessageQueueLog.log("info","index.js:- watchnotification(), Notification : " + JSON.stringify(response));           

                }
            });

希望它会奏效。

于 2016-03-02T09:04:46.383 回答
0

您需要在向日历 API 发出的请求中传递令牌值,以区分您的请求,如下所示

{
  "id": string,
  "token": string,
  "type": string,
  "address": string,
  "params": {
  "ttl": string
 }
}

如需进一步参考,请参阅

谷歌日历 API

于 2015-01-14T12:38:44.907 回答