0
outlookClient.me.folders.getFolder('Inbox').messages.getMessages().filter('IsRead eq false and HasAttachments eq true').fetchAll(10).then(function (result) {
result.forEach(function (message) {
    message.attachments.getAttachments().fetchAll(100).then(function (attachmentResult) {
        console.log('Message "' + message.subject + '" contains ' + attachmentResult.length + ' attachment(s)');
        attachmentResult.forEach(function (attachment) {
          console.log('*    "' + attachment.name + '" (' + attachment.size + ' KB)');

        });
    });
});

});

上記のコードでは、添付ファイルの ContentBytes を除くすべての詳細を取得できます。添付ファイルの ContentBytes を取得する方法を教えてください。

4

1 に答える 1

0

このcontentBytesプロパティは、タイプ の添付ファイルでのみ使用できますFileAttachment。そのプロパティの場合、ItemAttachment未定義になります。それ以外の場合は、として機能するはずattachment.contentBytesです。

于 2015-08-10T15:55:56.480 に答える