我正在尝试在 Google Calendar API 上执行一个简单的 freebusy 查询。我的授权一切正常,可以查看用户日历列表等。当我尝试提交忙/闲查询时,我收到 400 错误(据我所知)根本没有关于它的详细信息不喜欢。
无论是在我自己的代码中还是在我使用 Google 日历 API“试用”功能时都是如此。
这是我的请求(使用 Try It 小部件创建)和响应:请求
POST https://www.googleapis.com/calendar/v3/freeBusy?key={YOUR_API_KEY}
Content-Type: application/json
Authorization: Bearer ya29.AHES6ZTr-2wksEvp0iGPTnHTirTIItib5WwxmSAySq1ghfI98Cz88kA
X-JavaScript-User-Agent: Google APIs Explorer
{
"items": [
{
"id": "[my calendar id goes here]@group.calendar.google.com"
}
],
"timeMin": "2012-01-31T09:00:00",
"timeMax": "2012-01-31T10:00:00",
"timeZone": "GMT"
}
Response
400 Bad Request
cache-control: private, max-age=0
content-encoding: gzip
content-length: 122
content-type: application/json; charset=UTF-8
date: Sun, 16 Jun 2013 13:08:32 GMT
expires: Sun, 16 Jun 2013 13:08:32 GMT
server: GSE
{
"error": {
"errors": [
{
"domain": "global",
"reason": "badRequest",
"message": "Bad Request"
}
],
"code": 400,
"message": "Bad Request"
}
}
我认为这可能与 dateTime 对象/格式有关?但我不知道是什么。我真的很感激一些帮助;一个星期以来,我一直在努力解决这个问题!