首页 > 解决方案 > 使用 MS Graph-API 的频繁联系人/相关人员

问题描述

我正在尝试使用https://graph.microsoft.com/v1.0/me/people尝试使用图形 API 来获取频繁的联系人

这将返回联系人。我在“ScoredEmailAddresses”中看到一个名为“relevanceScore”的属性。当我丢弃电子邮件或有人丢弃电子邮件或即时消息时,我看不到这种变化。我还从 Microsoft 获得了有关帐单的邮件的营销帐户。有没有办法只让经常联系的人使用 MS Graph-API?任何帮助表示赞赏

标签: microsoft-graph-apiazure-ad-graph-api

解决方案


The RelevanceScore property should only be used to determine the relative importance of results from this API within the results from a single call to the API.

The absolute value must be considered unstable and may change. So don't write code that makes some cut off based on the range of values you see in this property. You also cannot compare values across different calls to the API, the value of relevance score may be different for the same contact for different queries.

API docs can be seen here: https://developer.microsoft.com/en-us/graph/docs/concepts/people_example


推荐阅读