我正在尝试使用Microsoft图形API访问app文件夹并在一个驱动器上上传文件,我获得了访问令牌但是当我向以下 endpoints 发送请求时出现错误

终点:https://graph.microsoft.com/v1.0/me/drive/special/approot

错误:

{
    "error": {
        "code": "unauthenticated",
        "message": "The caller is not authenticated.",
        "innerError": {
            "request-id": "4508d891-5309-49fe-b31e-cf69ea55b562",
            "date": "2018-01-10T12:35:20"
        }
    }
}

这只发生在我使用特定用户帐户的访问令牌时,否则其工作正常至少为我测试过的其他2个帐户 .

我得到的一切(截图附加),访问令牌,刷新令牌甚至范围也包含适当的权限,但在访问 endpoints 时仍然收到错误 .

Access token and other details image link

附:我使用的是企业帐号,是错误的原因吗?