我搜索了所有内容,但我无法找到在outlook-calender中创建事件的合适资源。请允许有人向我提供使用Node.js创建outlook-calender的代码
答案 0 :(得分:1)
OpenSessionInViewFilter或https://github.com/jasonjoh/node-outlook看起来就像你需要的那样。 此库提供了 Outlook Mail ,日历和联系人 API的轻量级实现。
创建活动的示例代码。
var outlook = require('node-outlook');
var newEvent = {
"Subject": "Discuss the Calendar REST API",
"Body": {
"ContentType": "HTML",
"Content": "I think it will meet our requirements!"
},
};
let createEventParameters = {
token: ['access token will come here'],
event: newEvent
};
outlook.calendar.createEvent(createEventParameters, function (error, event) {
if(error) {
console.log(error);
} else {
console.log(event);
}
});
答案 1 :(得分:0)
https://github.com/jasonjoh/node-outlook看起来就像你需要的那样。它需要用于Cordova应用程序的Microsoft Office 365 API客户端库,但这是非常期待的。