0

我的目标是使用 oAuth v2 为 GraphQl API 开发一个自定义的 power bi 连接器。我得到了没有问题的令牌,但是当它过期时,API 会使用以下负载响应,statusCode 200:

{
  "errors": [
    {
      "name": "GraphQLError",
      "message": "No valid session could be found, please reauthenticate",
      "path": [
        "roles"
      ],
      "code": "token-invalid",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ]
    }
  ],
  "data": null
}

我认为问题在于扩展中的 oAuth 系统没有正确理解这一点。

在此处输入图像描述

有什么办法可以通知 oAuth 包应该刷新令牌?

4

0 回答 0