【发布时间】:2016-07-21 05:55:23
【问题描述】:
我正在使用 makeEwsRequestAsync 来获取电子邮件的完整 MIME 内容。但根据响应中的错误消息,响应大小的上限似乎为 1 MB:
"ErrorMessage":"响应超过 1 MB 大小限制。请修改您的 EWS 请求。”
<GetItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ItemShape>
<t:BaseShape>IdOnly</t:BaseShape>
<t:AdditionalProperties>
<t:FieldURI FieldURI="item:MimeContent"/>
</t:AdditionalProperties>
</ItemShape>
<ItemIds><t:ItemId Id="' + itemId + '"/></ItemIds>
</GetItem>
我需要获取可能超过 1 MB 的消息的 MIME 内容,并将这些内容发布到我们的服务器。有没有办法在请求中增加这个限制,或者在 Exchange 端配置这个?
【问题讨论】:
标签: outlook outlook-addin office-js outlook-web-addins