我按照这个网站给出的例子: https ://docs.microsoft.com/en-us/outlook/rest/python-tutorial
我正在尝试获取来自特定电子邮件地址的所有消息。
按照示例,我想我需要编辑 query_parameters 代码。我已经这样做了:
query_parameters = {'$top': '30',
'$select': 'receivedDateTime,subject,from',
'$search': '"=from:someperson@mail.com"',
'$orderby': 'receivedDateTime DESC'}
它给了我一个错误,因为它没有在调用中返回任何内容。
有没有人成功地将示例更改为仅返回来自特定电子邮件地址的结果?