如何在 Google Cloud Endpoint Javascript Client 中设置自定义标头



我可以使用 Javascript Client 从 Google Cloud Endpoint 获取博客文章列表:

gapi.client.blog.posts.list().execute(function (resp) {
  console.log(resp);
});

但我需要在包含用户令牌的Google Cloud Endpoints请求中设置一个自定义标头值(这可能是来自Facebook的访问令牌)。如何使用Google的Javascript客户端来做到这一点?我可以通过不使用Google的Javascript客户端来解决这个问题,但我宁愿使用它。

https://developers.google.com/appengine/docs/java/endpoints/consume_jshttps://developers.google.com/api-client-library/javascript/reference/referencedocs

编辑

似乎我可以像这样传递自定义标头值:

gapi.auth.setToken({
    access_token: 'this is my custom value'
});

不过似乎不是好习惯。有没有更好的方法可以做到这一点?

现在可以使用gapi.client.request执行此操作,例如:

gapi.client.init({
    'clientId': 'YOUR_WEB_CLIENT_ID.apps.googleusercontent.com',
    'scope': 'your_scope'
}).then(function() {
    return gapi.client.request({
        'path': 'http://path/to/your/endpoints/api',
        'headers': { 'mycustomheader': 'myvalue' }
    })
}).then(function(response) {
    console.log(response.result);
}, function(reason) {
    console.log('Error: ' + reason.result.error.message);
});

另请参阅 Google API Javascript Client 文档的入门页面。

尝试正常使用标头,但获取令牌并在需要显示令牌的位置添加包含它的变量。

相关内容

  • 没有找到相关文章

最新更新