我一直在实施google calendar api的一些功能。我有一个自定义日历,可以与谷歌日历同步。这意味着,您可以从我的信息中心创建日历和事件以及日历和帐户。我面临的主要问题是,如果我直接从我的谷歌日历更新事件。我已经实现了推送通知并获得了这样的响应:
{
"Google_channel_ID": "19835150 - 0057 - 11e6 - bc9c - 1735798 ca540",
"Google_channel_token": "calendar_id = 4e7 d5c20ht9lpfdtuukcsvgeq4 @group.calendar.google.com & user_id = 43e d7rxeqqce3fk09ahszc",
"Google_channel_expiration": "Tue,12 Apr 2016 12: 34: 36 GMT",
"Google_resource_id": "oLMEEhHAw5Xo3r2187CWykjAtm0",
"Google_resource_URI": "https: //www.googleapis.com/calendar/v3/calendars/4e7d5c20ht9lpfdtuukcsvgeq4@group.calendar.google.com/events?alt=json",
"Google_resource_state": "sync",
"Google_message_number": "1"
}
但这种反应非常普遍。例如,如果我在此日历上有1000个事件,则更新完整的1000个事件。我将始终收到相同的通知1000.我想知道,如果可以获得哪个事件ID已更改,那么我可以执行并更新到我的数据库。
我启动手表的方式是这样的:
exports.watch = function(req, res){
var channel_id = uuid.v1();
var user_id = req.body.user_id;
var calendar_id = req.body.calendar_id;
authorize(user_id, function(oauth2Client){
var data = {
auth: oauth2Client,
calendarId: calendar_id,
resource: {
id: channel_id,
token: 'calendar_id='+ calendar_id + '&user_id=' + user_id,
address: 'https://api.medradr.com/google-watch',
type: 'web_hook',
params: {
ttl: '36000'
}
}
};
calendar.events.watch(data, function (err, response) {
if (err) {
console.error('The API returned an error: ' + err);
return;
}else{
res.send({ok: true, message: 'Listener created', result:response});
}
});
});
}
答案 0 :(得分:4)
对于那些正在寻找一种好方法来获取Web钩子触发时哪些事件发生变化的人。触发Web挂钩后,您将得到以下内容:
X-Goog-Channel-ID: channel-ID-value
X-Goog-Channel-Token: channel-token-value
X-Goog-Channel-Expiration: expiration-date-and-time // In human-readable format; present only if channel expires.
X-Goog-Resource-ID: identifier-for-the-watched-resource
X-Goog-Resource-URI: version-specific-URI-of-the-watched-resource
X-Goog-Resource-State: sync
X-Goog-Message-Number: 1
在 X-Goog-Resource-URI 上,您将获得以下内容:
https://www.googleapis.com/calendar/v3/calendars/4e7d5c20ht9lpfdtuukcsvgeq4@group.calendar.google.com/events?alt=json
通过OAuth身份验证,您可以向此URL发出GET请求,以获取属于此日历的所有事件。现在知道哪些资源已被更改的技巧非常简单。对于每个活动,您将获得以下内容:
{
event_id: 335,
user_id: '43ed7rxeqqce3fk09ahszc',
kind: 'calendar#event',
etag: '"2921213870180000"',
google_id: 'cpbcesg966skprb3rh1p1ud668',
status: 'confirmed',
htmlLink: 'https://www.google.com/calendar/event?eid=Y3BiY2VzZzk2NnNrcHJiM3JoMXAxdWQ2NjggNGU3ZDVjMjBodDlscGZkdHV1a2NzdmdlcTRAZw',
created: Thu Apr 14 2016 00:00:00 GMT-0500 (CDT),
updated: Thu Apr 14 2016 00:00:00 GMT-0500 (CDT),
summary: 'Testing google notifications',
description: '',
creator: 'guizarkrg@gmail.com',
organizer: '4e7d5c20ht9lpfdtuukcsvgeq4@group.calendar.google.com',
start: Sat Apr 09 2016 00:00:00 GMT-0500 (CDT),
end: Sun Apr 10 2016 00:00:00 GMT-0500 (CDT),
iCalUID: 'cpbcesg966skprb3rh1p1ud668@google.com',
event_type_id: 0,
calendar_id: 0,
timezone_id: 0,
sequence: 0,
calendar_color_id: ''
}
如您所见,这是一个序列:0 ,这是增量的。这意味着,每次您对事件应用某些更改(摘要,说明,开始日期,结束日期等)。此数字将递增+1。您可以将其保存在数据库中,因此每次Web挂钩触发时,您只更新序列为>的事件。比保存的序列。基本上,您更新事件并保存序列的新值。下次Web挂钩触发时,它只会在您的数据库上更新此条件中包含的事件。
希望它有所帮助,快乐编码。