Google Calendar API NodeJS - 指定字段

时间:2013-10-18 02:13:38

标签: google-api-nodejs-client

Heyo,我在我的NodeJS项目中使用google-api-nodejs-client包,我正在尝试为日历事件构建查询。它工作正常,但我无法指定“字段”字段。

这将返回五个完整的日历事件:

client.calendar.events.list({
    calendarId: gcal_id,
    maxResults: 5
})
.withAuthClient(authClient)
.execute(function(err, calendar) {
    if (err)
        console.log(err);
    else
        console.log(calendar);
});

但这没有任何回报:

client.calendar.events.list({
    calendarId: gcal_id,
    maxResults: 5,
    fields: {
        items: ["end","start","status","summary"]
    }
})
.withAuthClient(authClient)
.execute(function(err, calendar) {
    if (err)
        console.log(err);
    else
        console.log(calendar);
});

我也试过了:

fields: {
    items: "end,start,status,summary"
}

基于Google Calendar V3 API,我应该可以进行如下查询: https://www.googleapis.com/calendar/v3/calendars/gcal_id.google.com/events?maxResults=5&fields=items(end%2Cstart%2Cstatus%2Csummary)&key= {YOUR_API_KEY}

我不确定如何指定网址的“fields = items(end%2Cstart%2Cstatus%2Csummary)”部分,但我已经在Google的API资源管理器中对其进行了测试,但它确实有效,所以我知道我我在JavaScript中做错了什么。

非常感谢任何帮助。现在我想我只是清理第一个代码片段的响应。

1 个答案:

答案 0 :(得分:5)

好吧,我明白了。它应该是一个字符串。

fields: "items(end,start,status,summary)"