ruby-on-rails – Google Calendar API v3 – 更新活动

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Google Calendar API v3 – 更新活动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用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'})

解决方法

文档在这方面非常粗略,但似乎每次进行更新时都必须增加sequence属性.这是一种修订控制机制.

http://www.kanzaki.com/docs/ical/sequence.html

原文链接:https://www.f2er.com/ruby/268878.html

猜你在找的Ruby相关文章