我正在使用Outlook API构建Node.js应用程序。我成功检索了一个集合响应,但集合中的每个项目只有“Subject”和“From”参数,但缺少“Body”参数。以下是api请求:
outlook.mail.getMessages({token: token, folderId: 'Clutter', odataParams: queryParams},
function(error, result){
if (error) {
console.log('Error retrieving messages: ' + error);
response.write("<p>ERROR: " + error + "</p>");
response.end();
}
else if (result) {
答案 0 :(得分:0)
我意识到我没有在(“queryParams”)变量中包含(“Body”)参数,该变量被传递给http请求的odataParams。