1

gcloud-node API 会给我它正在使用的不记名令牌吗?

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

Authorization: Bearer your_auth_token

我可以在某种初始化后做类似 gcs.getAuth 的事情吗?

谢谢任何帮助。

4

1 回答 1

1

在 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'
  }
});
于 2015-08-24T01:48:48.693 回答