Gcloud-node访问承载令牌



gcloud-node API会给我它正在使用的承载令牌吗?

我可以用gcloud-node和keyfile创建签名url。json,但我试图遵循可恢复下载文档。他们建议在服务器上开始上传,然后将会话传递给客户端。看起来很简单,除了标题:

Authorization: Bearer your_auth_token

我可以做一些像gcs。在init之后的getAuth ?

谢谢你的帮助

answer on github: https://github.com/GoogleCloudPlatform/gcloud-node/issues/818

回答:是的,但是官方不支持

var reqOpts = { uri: '...' }; // what you would pass to the request module
storage.makeAuthorizedRequest_(reqOpts, {
  onAuthorized: function(err, authorizedReqOpts) {
    // authorizedReqOpts.headers.Authorization = 'bearer token'
  }
});

相关内容

  • 没有找到相关文章

最新更新