所以我一直在使用调用 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."
}
}
我不明白我可能做错了什么。我已经输入了所有必要的数据,它要求我提供一个事件甚至不存在的参数。我也找不到关于这个特定问题的任何文档。有人看到我缺少的东西吗?