我需要使用 OutLook 365 API 但使用 Outlookservicesclient 执行 OData 查询 $search = "subject:pizza"(在 Outlook 365 sdk 中找到,这个 nuget https://www.nuget.org/packages/Microsoft.Office365 .OutlookServices-V2.0/ )
这使用 HttpClient 可以正常工作,但使用 .NET 客户端库,似乎无法添加任何非标准查询参数。
IE:var messages = await client.Users['mail@me.com'].Messages
.Where(m => m.IsRead == false)
.Take(50)
.ExecuteAsync();
产生以下 RequestURIhttps://outlook.office365.com/api/v2.0/Users('mail%40me.com')/Messages?$filter=IsRead eq false&$top=50
并正确执行。
而如果尝试以下,var query = client.Users['Mail@me.com'].Messages
.Context.CreateQuery<Message>("Users('Mail@me.com')/Messages")
.AddQueryOption("$search", "subject:pizza");
要么返回Exception:Thrown: "Can't add query option '$search' because it begins with reserved character '$'." (System.NotSupportedException) A System.NotSupportedException was thrown: "Can't add query option '$search' because it begins with reserved character '$'."
或者如果我省略 AddQueryOption 行,我会遇到身份验证错误。
我需要做的就是附加$search=subject:pizza
RequestURI!如果不实际使用休息客户端,这似乎是不可能的,因为 Outlook 客户端似乎仅限于内置的 Linq 方法。
添加了客户端库没有参考文档的事实,我遇到了死胡同。有谁知道是否可以通过outlookservicesclient 包含$search?