我正在使用 Google 日历 API,并尝试向 API 发送插入事件的请求,但出现错误。
这是我发送的请求:
POST https://www.googleapis.com/calendar/v3/calendars/riteshmehandiratta%40gmail.com/events?key={YOUR_API_KEY}
Content-Type: application/json
Authorization: Bearer ya29.AHES6ZQwHy_3OYLmXtZpSa5PIwnBO3hqLWolMXpTYiFOEtjlEmbxNrYn
X-JavaScript-User-Agent: Google APIs Explorer
{
"end": {
"date": "2/14/2007"
},
"start": {
"date": "2/14/2007"
},
"kind": "calendar#event",
"summary": "Hello World"
}
我得到的回应是:
400 Bad Request
- Hide headers -
cache-control: private, max-age=0
content-encoding: gzip
content-length: 122
content-type: application/json; charset=UTF-8
date: Sat, 23 Mar 2013 17:36:22 GMT
expires: Sat, 23 Mar 2013 17:36:22 GMT
server: GSE
{
"error": {
"errors": [
{
"domain": "global",
"reason": "badRequest",
"message": "Bad Request"
}
],
"code": 400,
"message": "Bad Request"
}
}
我无法弄清楚为什么我收到错误的请求错误。