MicrosoftGraph API 按特定类别列出消息
MicrosoftGraph API list messages by specific categories
我尝试了 $filter 和 $search 指令,但没有成功。
失败的查询示例:
- 获取 .../v1/users/me/messages?$filter='Yellow'
中的类别
- GET .../messages?$filter=any(categories:categories eq 'Yellow')
- GET .../messages?$search="类别:黄色"
文档:https://docs.microsoft.com/en-us/graph/api/user-list-messages?view=graph-rest-1.0&tabs=http
文档:https://docs.microsoft.com/en-us/graph/query-parameters
请使用以下查询来过滤具有值 'Yellow' 的类别。
https://graph.microsoft.com/v1.0/me/messages?$filter=categories/any(c:c eq 'Yellow')
这里'Yellow'是我添加为自定义类别的类别。
如果您使用 'Blue category' 或 'Yellow category' 等内置类别,您需要使用准确的字符串来过滤它。
我尝试了 $filter 和 $search 指令,但没有成功。
失败的查询示例:
- 获取 .../v1/users/me/messages?$filter='Yellow' 中的类别
- GET .../messages?$filter=any(categories:categories eq 'Yellow')
- GET .../messages?$search="类别:黄色"
文档:https://docs.microsoft.com/en-us/graph/api/user-list-messages?view=graph-rest-1.0&tabs=http 文档:https://docs.microsoft.com/en-us/graph/query-parameters
请使用以下查询来过滤具有值 'Yellow' 的类别。
https://graph.microsoft.com/v1.0/me/messages?$filter=categories/any(c:c eq 'Yellow')
这里'Yellow'是我添加为自定义类别的类别。
如果您使用 'Blue category' 或 'Yellow category' 等内置类别,您需要使用准确的字符串来过滤它。