そこで、Google の API を呼び出す REST メソッドを使用してきました。ID を持っている特定のカレンダーにイベントを挿入する必要があります。これは私が送信している POST リクエストです:
アドレス: https://www.googleapis.com/calendar/v3/calendars/ {calendarID}/events
体:
Authorization: Bearer {access_token}
{
"end": {
"dateTime": "2012-08-30T12:30:00",
"timeZone": "America/Chicago"
},
"start": {
"dateTime": "2012-08-30T14:00:00",
"timeZone": "America/Chicago"
},
"summary": "E E 306",
"colorId": "9"
"kind": "calendar#event"
}
そして、これは私が得続ける応答です:
{
"error":{
"errors":[
{
"domain":"calendar",
"reason":"timeRangeEmpty",
"message":"The specified time range is empty.",
"locationType":"parameter",
"location":"timeMax"
}
],
"code":400,
"message":"The specified time range is empty."
}
}
何が間違っている可能性があるのか わかりません。必要なデータをすべて入力しましたが、イベントには存在しないパラメーターを要求しています。また、この特定の問題に関するドキュメントも見つかりません。誰かが私が見逃しているものを見ていますか?