有没有办法通过 Outlook API 获取建议的联系人?
Is there a way to get the Suggested Contacts through Outlook API?
我目前正在开发一个应用程序来获取我的 Microsoft 帐户中的联系人。
问题是,与 Google 不同,当我向 to/from 发送或接收新联系人的电子邮件时,它不会复制到我的联系人中,所以我无法通过 https://outlook.office.com/api/v2.0/me/contacts
获取它。
但是,当我写一封新邮件时,它显示为建议,所以我猜它存储在其他地方。
问题是:有没有办法通过 API 访问我的 suggested contacts
以获取他们的电子邮件?又如何?
谢谢
此功能目前仅在测试版中可用,请参阅以下内容api:
https://outlook.office.com/api/beta/me/contacts?$select=EmailAddresses,GivenName,Surname,DisplayName
这 api 将 return 您收到或发送电子邮件给的所有联系人 :)
最接近您要查找的内容是 People API。正如该页面所说:
The People API returns relevent person entities with each request. A person aggregates information from across mail, contacts and social networks. The results are ordered by their relevance, which is determined by the criteria specified in the request and ranked based on multiple communication, collaboration and business relationships.
我目前正在开发一个应用程序来获取我的 Microsoft 帐户中的联系人。
问题是,与 Google 不同,当我向 to/from 发送或接收新联系人的电子邮件时,它不会复制到我的联系人中,所以我无法通过 https://outlook.office.com/api/v2.0/me/contacts
获取它。
但是,当我写一封新邮件时,它显示为建议,所以我猜它存储在其他地方。
问题是:有没有办法通过 API 访问我的 suggested contacts
以获取他们的电子邮件?又如何?
谢谢
此功能目前仅在测试版中可用,请参阅以下内容api:
https://outlook.office.com/api/beta/me/contacts?$select=EmailAddresses,GivenName,Surname,DisplayName
这 api 将 return 您收到或发送电子邮件给的所有联系人 :)
最接近您要查找的内容是 People API。正如该页面所说:
The People API returns relevent person entities with each request. A person aggregates information from across mail, contacts and social networks. The results are ordered by their relevance, which is determined by the criteria specified in the request and ranked based on multiple communication, collaboration and business relationships.