Microsoft graph api Microsoft Graph API在calendarView上使用nextLink会导致ErrorAccessDenied

Microsoft graph api Microsoft Graph API在calendarView上使用nextLink会导致ErrorAccessDenied,microsoft-graph-api,microsoft-graph-sdks,microsoft-graph-calendar,Microsoft Graph Api,Microsoft Graph Sdks,Microsoft Graph Calendar,在calendarView上执行增量查询时,即使没有结果,也会收到nextLink GET: https://graph.microsoft.com/v1.0/users/..../calendars/..../calendarView/microsoft.graph.delta?startdatetime=2020-08-05T13:53:29.954Z&enddatetime=2021-08-05T13:53:30.151Z { "@odata.context&q

在calendarView上执行增量查询时,即使没有结果,也会收到nextLink

GET: https://graph.microsoft.com/v1.0/users/..../calendars/..../calendarView/microsoft.graph.delta?startdatetime=2020-08-05T13:53:29.954Z&enddatetime=2021-08-05T13:53:30.151Z

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(event)",
    "@odata.nextLink": "https://graph.microsoft.com/v1.0/users/..../calendars/..../calendarView/microsoft.graph.delta?$skiptoken=b9658zLYx7ag_WbFCK2mQj8933PsHHOxsDcYSWymakIJAcGkjxjTZWz4SsQI4Gu31DvwMi0kzqDrERlfvpdkmD73Q-qUZHD5hyPpuGzImOd5KAY6SFhuYJTLnvcBRo31v2UIm9miIbAHDoaY4ImhmxMa8bmAUKOL....",
    "value": []
}
按照该链接获取deltaLink会导致错误AccessDenied

GET: https://graph.microsoft.com/v1.0/users/..../calendars/..../calendarView/microsoft.graph.delta?$skiptoken=b9658zLYx7ag_WbFCK2mQj8933PsHHOxsDcYSWymakIJAcGkjxjTZWz4SsQI4Gu31DvwMi0kzqDrERlfvpdkmD73Q-qUZHD5hyPpuGzImOd5KAY6SFhuYJTLnvcBRo31v2UIm9miIbAHDoaY4ImhmxMa8bmAUKOL....

{
  "error": {
    "code": "ErrorAccessDenied",
    "message": "Access is denied. Check credentials and try again.",
    "innerError": {
      "date": "2020-08-05T14:06:37",
      "request-id": "fa8341c3-3eb0-4465-825e-6d7e80f532cd"
    }
  }
}
有什么我遗漏的吗? 如果没有要返回的对象,是否有方法在第一次请求时获取deltaToken


我曾尝试使用msgraph sdk java 1.9.0和使用PostMan的direct call实现此流程。

我又尝试了几个小时,但没有任何效果。。。。直到我们的客户机最终重新检查了他的配置并重新分配了所有的代理权限


现在它工作得很好….

是否可能在发送nextlink请求时没有访问令牌和/或令牌已过期?我已尝试生成一个新令牌并在调用nextlink时使用它,但没有任何更改。。。我想是邮箱配置中的某些内容。。。