1

我想在 NodeJS中使用Google Cloud Storage ,但使用google-auth-library 进行身份验证 具体来说:我想在 heroku 上托管它,所以我想将秘密保存在环境变量中,而不是文件中(因为我必须提交文件以部署到heroku)。基本上什么在 auth 库中建议: https ://github.com/googleapis/google-auth-library-nodejs#loading-credentials-from-environment-variables

但我似乎无法将生成的客户端传递给 Storage 构造函数?

4

1 回答 1

4

阅读代码 [ 1 , 2 , 3 , 4 , 5 ],您应该能够将凭据作为构造函数选项传递:

storageOptions = {
  projectId: 'your-project-id',
  credentials: {
        client_email: 'your-client-email',
        private_key: 'your-private-key'
  }
};
client = new Storage(storageOptions);
于 2018-12-11T21:56:34.177 回答