我目前正在为团体使用 Microsoft Graph Api。当我通过 API Explorer(https://graphexplorer2.azurewebsites.net )访问群组对话(https://graph.microsoft.com/v1.0/groups/3b41ffb2-4fec-4ca6-97f8-40c70eb75df3/conversations)时,它工作正常。但是,如果我通过 Postman 访问相同的内容,我会收到以下错误。
{
"error": {
"code": "ErrorInternalServerError",
"message": "The SMTP address has no mailbox associated with it.",
"innerError": {
"request-id": "20289ba7-0782-4d0e-9ea9-64e4567bfca6",
"date": "2016-01-13T13:05:21"
}
}
}
但是在 Postman 下面的 API 工作正常。
https://graph.microsoft.com/v1.0/groups/3b41ffb2-4fec-4ca6-97f8-40c70eb75df3
https://graph.microsoft.com/v1.0/groups
在为测试目的创建的 Azure AD 应用程序中,我还启用了 Graph API 和 Azure AD 权限的所有权限。我无法继续进行。