我正在使用google-api-
ruby-client来处理Google Calendar API v3.
我面临的唯一问题是两次更新事件.
之前已经讨论过(Google Calendar api v3 re-update issue),但没有ruby客户端,也没有回答.
当我添加一个新事件时,我会得到一个ID和一个ETAG.我使用ID来更新事件,我得到一个新的ETAG.现在如果我尝试更新第二次,它不会更新并发送400错误消息“无效值”.
我必须在第二次更新时发送最新的ETAG但我不确定在使用google-api-ruby-client时如何发送它.
这是代码:
event = { 'summary' => "Summary",'location' => "Location",'description' => "Description",'start' => { 'dateTime' => @entry.from_date },'end' => { 'dateTime' => @entry.to_date } } result = client.execute(:api_method => service.events.update,:parameters => {'calendarId' => @entry.calendar.gid,'eventId'=>@entry.gid},:body => JSON.dump(event),:headers => {'Content-Type' => 'application/json'})