所以我试图从office360.com获取所有日历事件。我正在使用ews来获取数据。我发送了
的请求 <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<soap:Body>
<FindItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
Traversal="Shallow">
<ItemShape>
<t:BaseShape>AllProperties</t:BaseShape>
<t:BodyType>HTML</t:BodyType>
</ItemShape>
<ParentFolderIds>
<t:DistinguishedFolderId Id="calendar"/>
</ParentFolderIds>
</FindItem>
</soap:Body>
</soap:Envelope>
这个soap请求xml没有返回我的日历消息正文,但我得到了主题和其他数据。我在这做错了什么?任何帮助表示赞赏。
答案 0 :(得分:3)
需要在单独的电话中检索身体。
或者您可以先加载该属性。
第二种更容易,但你需要定义你想要的所有属性,如果它很多,那可能会很痛苦。