我尝试使用Microsoft Graph REST API发送电子邮件。我的应用程序是一个服务/守护程序应用程序,我代表用户发送电子邮件。
我已成功获取令牌并获取用户对象,以便我拥有用户id
,但当我尝试使用sendMail
API时{{1}我收到以下错误响应:
POST /users/{user id}/sendMail
我还尝试使用{
"error": {
"code": "ResourceNotFound",
"message": "Resource could not be discovered.",
"innerError": {
"request-id": "a911ead2-840d-4bfe-9a77-bc5000c1b749",
"date": "2017-01-03T13:33:24"
}
}
}
首先将消息创建为草稿,但这也会返回完全相同的错误。我的申请权限包括POST /users/{user id}/messages
和Mail.ReadWrite
。