我们有一个应用程序,可以在日历上创建订阅以进行更改。
https://graph.microsoft.com/v1.0/subscriptions
{
"changeType": "created,updated,deleted",
"notificationUrl": "https://example.com/notifications",
"resource": "users('room-01@example.com')/events",
"expirationDateTime":"2020-11-14T14:56:29.000Z",
"clientState": "Test"
}
这按预期工作。
但是现在我们对多个房间的日历事件感兴趣。
由于我们有许多房间(超过300个房间),因此我们希望一次将我们的应用程序订阅到许多日历中。
如果我们为每个房间创建单独的订阅,则可能会达到Microsoft的订阅限制。
我们希望订阅组中的所有资源:
https://graph.microsoft.com/v1.0/subscriptions
{
"changeType": "created,updated,deleted",
"notificationUrl": "https://example.com/notifications",
"resource": "groups('383efd01-29b6-4817-9a9c-8faf61a1e06a')/events",
"expirationDateTime":"2020-11-14T14:56:29.000Z",
"clientState": "Test"
}
这不起作用... 也许还有另一种设置资源的方法,通配符? 希望有人能帮助我们或采取其他替代方法。
答案 0 :(得分:0)