我无法全神贯注地在Microsoft graph api上过滤Outlook消息。截至目前,我还没有做到这一点,效果很好:
https://graph.microsoft.com/v1.0/users/*/messages?$count=true&$top=100&$filter=(ReceivedDateTime ge 2019-03-12T16:01:00Z and receivedDateTime lt 2019-04-20T19:01:00Z) AND (startswith(subject,'some subject text'))...
但是我需要根据身体内容进一步过滤结果,这就是我添加此内容的原因:
... AND (contains(bodyPreview,'some bodytext'))
这失败了吗??基于以下参数在Outlook中筛选邮件的正确方法是什么?