使用 Postman,我正在尝试检索 Outlook 邮箱中收到的最后一封电子邮件。
为此,我在 App Portal 中声明了我的应用程序。然后,我可以GET
请求从端点获取令牌:
https://login.microsoftonline.com/[tenantId]/oauth2/token
接下来,我尝试使用收到的令牌在
https://graph.microsoft.com/v1.0/me/mailfolders/inbox/messages
问题是 API 返回:
{
"code": "NoPermissionsInAccessToken",
"message": "The token contains no permissions, or permissions can not be understood.",
}
在我的应用程序的权限中,我已授权与阅读电子邮件相关的所有操作。我错过了什么吗?