Update recurring event after a date

这一生的挚爱 提交于 2021-02-05 11:15:51

问题


my name is Erick and I'm doing an integration with google calendar.

I need to update the information (without changing the date) of a recurring event from a date other than the first, and I need the changes to be applied in the following schedules.

Ex: Recurring scheduling 2020-07-20 through 2020-07-30

change the summary from the 23rd onwards

call PUT

https://www.googleapis.com/calendar/v3/calendars/{{id}}/events/{{event_id}}

{
 "summary": "TESTE 123",
  "start": {
    "dateTime": "2020-07-23T19:00:00",
    "timeZone": "America/Sao_Paulo"
   },
 "end": {
    "dateTime": "2020-07-23T20:00:00",
    "timeZone": "America/Sao_Paulo"
 }, "recurrence":[
 "RRULE:FREQ=DAILY;UNTIL=20200730T235959Z;BYDAY=MO,TU,WE,TH,FR,SA"

] }

The problem is that when doing it, the days 20, 21 and 22 are excluded,

When there is a change of dates I call the PUT and then the POST to create the other schedules, however, in this case there is no change of date and I cannot miss the recurrence.

I really need some help on this issue, this one, thank you

来源:https://stackoverflow.com/questions/63001168/update-recurring-event-after-a-date

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!