我正在使用Google Calendar library for Node.js从API获取日历ID和事件列表。这正在按预期方式工作。但是,当我尝试插入或修改事件时,我遇到了常见的(!)错误消息“缺少结束时间”。
我正在尝试使用Request - Simplified HTTP client而不是Google图书馆或其他软件包发送POST请求。
这是我的代码段:
const request = require('request');
// Update Event Title
function insertEventIntoCalendar(calendarId,accessToken){
let endDateTime = {
dateTime: '2018-07-03T10:25:00.000-07:00',//end,
timeZone: 'Asia/Dhaka'
},
startDateTime = {
dateTime: '2018-07-03T10:00:00.000-07:00', //start,
timeZone: 'Asia/Dhaka'
},
url = "https://www.googleapis.com/calendar/v3/calendars/primary/events?access_token="+accessToken,
options = {
data: {
end: endDateTime,
start: startDateTime,
summery: 'ARG will win',
location: '800 Howard St., San Francisco, CA 94103',
attendees: [],
reminders: {
useDefault: true,
}
},
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + accessToken,
'Accept': 'application/json'
},
calendarId: 'primary'
}
request.post(url, options, function (err, res, body) {
console.log('err =>', err);
console.log('body =>', body);
})
}
这是我的console.log消息:
err => null
body => {
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Missing end time."
}
],
"code": 400,
"message": "Missing end time."
}
}
注意:我一直在关注与Google Calendar API和Node.js相关的所有问题和答案,但仍然遇到相同的错误。而且我没有找到未使用Google图书馆的任何答案。
如果您尝试这种方法,请分享您的想法,否则,如果我不需要任何 Config 文件来获取或修改Google日历信息,则可以向我推荐一种更好的方法。
答案 0 :(得分:0)
问题在于声明了 options 变量。 Request - Simplified HTTP client的文档说,请求正文的json数据应命名为'json'。所以 options 变量应该是
options = {
url: url
json: {
end: endDateTime,
start: startDateTime,
summery: 'ARG will win',
location: '800 Howard St., San Francisco, CA 94103',
attendees: [],
reminders: {
useDefault: true,
}
}
}
并发送POST请求,代码应为:
request.post(options,function (err, res, body) {
console.log('err =>', err);
// console.log("res =>", res);
console.log("body =>", body);
})
我尝试过这种方法,它可以工作:)