我正在尝试使用Google的Calendar API的Ruby包装器更新事件对象上的字段(date_time)。 Source here
documentation包含有关方法的信息:
update_event(calendar_id, event_id, event_object = nil, always_include_email: nil, max_attendees: nil, send_notifications: nil, supports_attachments: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil)
我不明白第三个参数 - 我应该用更新的字段实例化一个新的事件对象吗?尝试过,但只是收到错误回复和“无效请求”。
任何提示如何前进都会非常感激。
答案 0 :(得分:0)
event = client.get_event('primary', 'eventId')
event.summary = 'Appointment at Somewhere'
result = client.update_event('primary', event.id, event)
print result.updated