admin管理员组文章数量:1346317
I am trying to build an app in Python which uses MS Graph to send emails from a shared mailbox, I've been focusing on the msgraph-sdk
module. I need this app to run as a daemon process (no human interaction required), so figured the suitable auth-flow here is ClientSecretCredential
- application rather than delegation.
The GraphServiceClient
object in msgraph-sdk
gives 2 avenues to work with self.me
and self.users
. My understanding is I need self.users
for this specific case. I do not understand the required permissions that need to be set up for an application level credential to send mail from a shared inbox.
I have followed the tutorial @ .0&tabs=python
using credential flow example from .md
And get:
Error: ErrorAccessDenied Access is denied. Check credentials and try again.
There is a part of the tutorial above to get a token, which works as expected - but I think msgraph-sdk will handle that under the hood? Is this even possible with App-Only Creds, and sending from a Shared Mailbox? Any help appreciated, thanks!
I am trying to build an app in Python which uses MS Graph to send emails from a shared mailbox, I've been focusing on the msgraph-sdk
module. I need this app to run as a daemon process (no human interaction required), so figured the suitable auth-flow here is ClientSecretCredential
- application rather than delegation.
The GraphServiceClient
object in msgraph-sdk
gives 2 avenues to work with self.me
and self.users
. My understanding is I need self.users
for this specific case. I do not understand the required permissions that need to be set up for an application level credential to send mail from a shared inbox.
I have followed the tutorial @ https://learn.microsoft/en-us/graph/api/user-sendmail?view=graph-rest-1.0&tabs=python
using credential flow example from https://github/microsoftgraph/msgraph-sdk-python/blob/main/docs/applications_samples.md
And get:
Error: ErrorAccessDenied Access is denied. Check credentials and try again.
There is a part of the tutorial above to get a token, which works as expected - but I think msgraph-sdk will handle that under the hood? Is this even possible with App-Only Creds, and sending from a Shared Mailbox? Any help appreciated, thanks!
Share Improve this question asked 2 days ago Kitster1Kitster1 111 bronze badge1 Answer
Reset to default 0You need to assign the Mail.Send Application permission that will give your ServicePrincipal the permissions to Send email. Being a shared mailbox doesn't have that much relevance as the SP will impersonate the mailbox owner so it should work as long as there is no scoping of the SP access https://learn.microsoft/en-us/graph/auth-limit-mailbox-access
本文标签: pythonMS GraphApplication OnlySending Emails from Shared Mailbox as DaemonStack Overflow
版权声明:本文标题:python - MS Graph - Application Only - Sending Emails from Shared Mailbox as Daemon - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829763a2546309.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论