云容器生成器身份验证令牌问题



我尝试使用npm生成器在Cloud Container Builder上运行以下代码:

const Storage = require('@google-cloud/storage');
const storage = new Storage();
const bucketName = 'some-bucket-name';
test(`can access GCP`, async (t) => {
  await storage
    .createBucket(bucketName)
    .then(() => {
      console.log(`Bucket ${bucketName} created.`);
      t.pass();
    })
    .catch(err => {
      console.log(err);
      t.fail();
    });
});

当我这样做时,我得到了一个404 page not found错误。我该如何解决这个问题?

如果有帮助,我还尝试使用数据丢失防护API,它给了我一个错误,说Getting metadata from plugin failed with error: Could not refresh access token.

谢谢!

这是

由于google-auto-auth依赖项中的一个错误,该错误已从版本0.9.2开始修复。

不幸的是,客户端库(如 @google-cloud/storage (尚未更新为使用此版本的google-auto-auth。在更新它们之前,可以通过重写传递依赖项来解决此问题。如果您使用的是 yarn(而不是 npm(,请将以下部分添加到您的 package.json 文件中:

"resolutions": {
  "google-auto-auth": "^0.9.2"
}

相关内容

  • 没有找到相关文章

最新更新