Microsoft Graph 订阅限制

Microsoft Graph Subscription Limitations

我们有一个应用程序可以创建 MS Graph 订阅,用户希望在其中 'track' outlook 电子邮件对话。当发送或接收对话中的电子邮件时,订阅使用电子邮件的对话 ID 发送通知。 一旦我们收到来自 MS Graph 的通知,我们就会使用消息 ID 获取有关电子邮件的详细信息,以便我们可以将其存储在我们的 CRM 中。

我正在尝试查找有关 limitations/throttling 与此相关的信息。 我已经阅读了信息 here and here but neither are very specific. I also raised a GitHub issue with the MS Graphs docs team here 但他们没有回复。

我很想知道:

每个用户基于 Outlook 的 Graph 订阅是否有限制?

Yes there is limit. Each user or groupcan requests 10,000 API call in a 10 minute period. It could be same for user and group as well. You could have a look official document

我们可以为每个用户检索的消息数量是否有限制?

Normally 500 message each user can retrieve but it is customizable. You can customize it up to 1000 for each user.

更多可以看看official document here

希望对您有所帮助。如果您还有任何疑虑,请随时分享。