Google API Explorer を使用して、新しい開始日と終了日で既存のイベントにパッチを適用しようとしています
現時点での私のイベントは次のようになります
{
"kind": "calendar#event",
"etag": "\"2912997881756000\"",
"id": "3fpkrr85sdfdgsdfsdsdflgn7vk74qhiv2o",
"status": "confirmed",
"htmlLink": "https://www.google.com/calendar/event?eid=M2Zwa3JsdfsdfyODVudWZobGduN3ZrNzRxaGl2Mm8gZHlsbsdfsdfi5pb19xNjUwcWRhcnYyam9vYWYzcTdudmhpc2ZvNEBn",
"created": "2016-02-26T14:32:33.000Z",
"updated": "2016-02-26T15:02:20.878Z",
"summary": "aaaa",
"creator": {
"email": "xxxx@yyy.com",
"displayName": "name"
},
"organizer": {
"email": "xxxxxx@group.calendar.google.com",
"displayName": "Display",
"self": true
},
"start": {
"date": "2016-02-26"
},
"end": {
"date": "2016-03-02"
},
"iCalUID": "3fpkrr85nufasdfsdfsadfasdfhlgn7vk74qhiv2o@google.com",
"sequence": 2,
"reminders": {
"useDefault": true
}
}
そして、私が Google API Explorer から行っているリクエストは次のようなものです
PATCH https://www.googleapis.com/calendar/v3/calendars/ddfdfdfdfdf%40group.calendar.google.com/events/3fpkrr85nufhlgn7sdfsafdfdsghgffdhvk74qhiv2o?fields=start&key={YOUR_API_KEY}
{
"start": {
"dateTime": "2016-02-16T12:00:00+01:00"
},
"end": {
"dateTime": "2016-02-18T13:00:00+01:00"
}
}
しかし、私は常に次のエラーが発生します
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "Invalid start time."
}
],
"code": 400,
"message": "Invalid start time."
}
}
イベントがフィールドAll Day
であることを意味するイベントであり、送信しているため、これが起こっていると推測していますが、これはまさに私がやりたいことです。と の型をからに単純に変更することはできませんか?start
Date
DateTime
start
end
Date
DateTime
アップデート
パスリクエストのphpコードは次のとおりです
$client = $this->container->get('google.calendar.client');
$client->setAccessToken($this->auth()->getIdentity()->getGoogleAccessToken());
$service = new \Google_Service_Calendar($client);
$event = new \Google_Service_Calendar_Event($eventData);
$event = $service->events->patch($this->auth()->getIdentity()->getGoogleCalendarId(), $item->getGoogleId(), $event);
$item->setGoogleId($event->getId());
$this->getItemRepo()->save($item);