2017-08-05 28 views
0

我試圖通過組織者電子郵件獲取Outlook日曆事件。Microsoft Graph API:GET Outlook日曆事件:按組織者過濾電子郵件

這裏是我使用的請求URL:

https://graph.microsoft.com/v1.0/me/events $濾芯的組織者/ EMAILADDRESS /地址EQ '[email protected]'

請求失敗,此錯誤:

501 Not Implemented: { 
"error": { 
"code": "UnsupportedEntityExpression", 
"message": "'i => (i.Organizer.EmailAddress == \"[email protected]\")' is not a supported filter expression.", 
"innerError": { 
"request-id": "62206cba-ad9e-4051-b504-321cbcacc6fd", 
"date": "2017-08-04T23:39:47" 
} 
} 
} 

僅供參考我在一個叫做Workato的iPaas上運行這個請求,這是顯示在它上面的錯誤信息。

令我百思不解的是,這種類似的請求的工作原理:? https://graph.microsoft.com/v1.0/me/events $濾芯的組織者/ EMAILADDRESS /名稱EQ「李四」

兩個名稱和地址EMAILADDRESS的性質,所以我不知道爲什麼第一個請求失敗。

以前是否有人通過組織者電子郵件過濾?

回答

相關問題