TypeError:Docker 中的获取失败

TypeError: fetch failed in Docker

提问人:Илья Никитин 提问时间:11/14/2023 最后编辑:Илья Никитин 更新时间:11/14/2023 访问量:55

问:

我正在应用程序中使用库与OneDrive中的文件进行交互。在本地构建中一切正常,但是当我在 Docker 中运行应用程序时,即使请求正常运行,我在尝试从 OneDrive 检索文件时也遇到错误。MS Graph APINodeJSmicrosoft-graph-clientBatch

触发错误的请求:

const response = await this.client
      .api('users/{userID}/drive/root:/myapp/' + filename + '.pptx:/content')
      .get();

错误

TypeError: fetch failed
    at Object.fetch (node:internal/deps/undici/undici:11372:11)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
  statusCode: -1,
  code: 'TypeError',
  requestId: null,
  date: 2023-11-13T15:50:09.758Z,
  body: 'TypeError: fetch failed',
  headers: undefined
}

当我在 Docker 中运行应用程序时发生错误。我该如何解决?

节点.js docker microsoft-graph-api nestjs 类型错误

评论


答: 暂无答案