0

我試圖通過使用Google的Calendar API的Ruby包裝來更新事件對象上的字段(date_time)。 Source hereGoogle日曆中的更新事件

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

Found an example

event = client.get_event('primary', 'eventId') 
event.summary = 'Appointment at Somewhere' 
result = client.update_event('primary', event.id, event) 
print result.updated