Limit access to groups or individual mailboxes using a service application in Azure Ad

前端 未结 2 2040
一整个雨季
一整个雨季 2020-12-10 22:18

I have an Azure integrated service application (daemon app) with permissions to the Microsoft graph api, I can now read all the mailboxes for the entire company, which is aw

2条回答
  •  抹茶落季
    2020-12-10 22:40

    The daemon app which use the client credential to acquire the access token.

    The client credential flow is used to as an authorization grant typically when the client is acting on its own behalf. And it is not able to specify mailboxes that the app can have access.

    You can achieve this by implement the business logic in the daemon app.

提交回复
热议问题