Отсутствует время окончания Google Calendar
Вот мой запрос в календаре Google. В ответе код ошибки "Отсутствует время окончания". Я пытаюсь сделать это динамичным, поэтому я в конечном итоге удаляю жестко закодированные даты начала и окончания.
var object = {
"end": {
'dateTime': "2014-07-28T23:00:00",//end,
"timeZone": timeZone
},
"start": {
'dateTime': "2014-07-28T18:00:00",//start,
"timeZone": timeZone
},
"calendarId": calendarId,
"summary": artist,
"description": description,
"location": address
};
var request = gapi.client.calendar.events.insert(object);
2 ответа
Решение
This guy had the answer
https://groups.google.com/forum/#!msg/google-calendar-api/cnkgXfy_GQQ/SRV1N0TAGtYJ
var object = {
'end': {
'dateTime': '2014-07-28T23:00:00',//end,
'timeZone': timeZone
},
'start': {
'dateTime': '2014-07-28T18:00:00',//start,
'timeZone': timeZone
}
//'summary': artist,
//'description': description,
//'location': address
};
var calendarObject =
{
'calendarId': calendarId,
'resource': object
};
var request = gapi.client.calendar.events.insert(calendarObject);
Возможно, причина этой ошибки не в неправильное время. Возможно, API Календаря не может распознать вас json. Заголовок http-запроса ДОЛЖЕН содержать "Content-Type: application/json". Смотрите здесь http://devsplanet.com/question/37535563
Это сработало для меня:
var event = {
summary: "Google I/O 2015",
location: "800 Howard St., San Francisco, CA 94103",
description: "A chance to hear more about Google's developer products.",
start: {
date: "2020-05-28"
},
end: {
date: "2020-05-29"
}
};
gapi.client.calendar.events
.insert({
calendarId: calendarId,
resource: event
})