我想使用nodejs使用zoho邮件的caldav从后端与日历进行通信。谁能建议我如何实现它? 我正在使用插件node-caldav-mod
我尝试了一段似乎没有用的代码。
var caldav = require("node-caldav-mod");
var moment = require('moment-timezone');
var express = require('express');
var app = express();
var xmljs = require("libxmljs");
var https = require("https");
var CalendarId = "2123123123";
var url = "https://calendar.zoho.com/caldav/{CalendarId}/events";
var username = "username"
var password = "password"
var timeFormat = "YYYYMMDDTHHmms";
var getTodayEvent = function (callback){
var startDate = moment().set({'hour': 0,'minute': 0,'second': 0}).format(timeFormat) + "Z";
var endDate = moment().set({'hour': 23,'minute': 59,'second': 59}).format(timeFormat) + "Z";
var output = {};
output.startDate = startDate;
output.endDate = endDate;
caldav.getEvents(url, username, password, startDate, endDate, function(response){
console.log(response);
callback(response);
});
}
var findPropertyNameByRegex = function(o, r) {
var key;
for (key in o) {
if (key.match(r)) {
return key;
}
}
return undefined;
};
function compare(a,b) {
var startDate_a = findPropertyNameByRegex(a, "DTSTART");
var startDate_b = findPropertyNameByRegex(b, "DTSTART");
if (a[startDate_a] < b[startDate_b])
return -1;
else if (a[startDate_a] > b[startDate_b])
return 1;
else
return 0;
}
app.get('/today',function(req, res){
getTodayEvent(function(events){
events.sort(compare);
res.send("Communication set up properly!")
})
});
这是我得到的错误
Parsing.....
undefined
Error parsing response
TypeError: Cannot read property 'D:multistatus' of undefined
有人可以告诉我这段代码有什么问题吗?
答案 0 :(得分:2)
有人可以告诉我这段代码有什么问题吗?
是。你的错误似乎来自 this line 在您似乎使用的模块中:
var data = result['D:multistatus']['D:response'];
这完全没有意义。 D:
只是一个名称空间前缀,可以是服务器选择的任何内容。
CalDAV客户端需要正确解析和处理XML名称空间。
解决方案:使用合适的模块,或者只是自己编写。