设计令牌身份验证 - 如何使用javascript访问响应头信息?

时间:2018-01-05 00:51:09

标签: javascript ruby-on-rails authentication devise vue.js

我正在开发一个使用rails作为Backend API和vue.js作为前端库的Web应用程序。在身份验证期间,我使用devise_token_auth库。现在它似乎是在响应的标题内发送令牌信息,我不知道如何使用javascript进行检索。

我还表明他们有像J-toker这样的独立库,  ng-token-authangular2-token ..来自他们我跟随jtoker auth因为我想用它来使用vue.js。但它似乎需要React组件。在这里,我附上了使用Postman的回复。

回应机构:

{"data":{"id":3,"email":"contact@dazzlebirds.com","provider":"email","uid":"contact@dazzlebirds.com","name":null,"image":null}}

响应标题:

Cache-Control →max-age=0, private, must-revalidate
Content-Type →application/json; charset=utf-8
ETag →W/"2af9684eadab13f0efebb27b8e29a7be"
Transfer-Encoding →chunked
Vary →Origin
X-Content-Type-Options →nosniff
X-Frame-Options →SAMEORIGIN
X-Request-Id →41f3df67-574c-4095-b471-a8fd08b85be5
X-Runtime →0.768768
X-XSS-Protection →1; mode=block
access-token →DGoclk9sbb_LRgQrr5akUw
client →7_Lfy0RlEbzkpLOpiQCKRQ
expiry →1516322382
token-type →Bearer
uid →contact@dazzlebirds.com

1 个答案:

答案 0 :(得分:1)

您需要拦截所有请求/响应调用,并使用access-token包含/检索标头。配置标头可以保存在浏览器的localstorage中以维持连接。

您可以使用任何基于promise的http客户端来实现此目的,对于下面的示例,我将使用axios

首先需要在vue应用程序的main.js文件中导入axios。

import axios from 'axios'

然后您可以截取请求

axios.defaults.headers.common['Content-Type'] = 'application/json';
axios.interceptors.request.use(function (config) {
  const authHeaders = JSON.parse(window.localStorage.getItem('authHeaders'))
  if(authHeaders) {
    config.headers[config.method] = {
      'access-token': authHeaders['access-token'],
      'client': authHeaders['client'],
      'uid': authauthHeadersUser['uid']
    }
  }
  return config;
}, function (error) {
  return Promise.reject(error)
});

axios.interceptors.response.use(function (response) {
  if(response.headers['access-token']) {
    const authHeaders = {
      'access-token': response.headers['access-token'],
      'client': response.headers['client'],
      'uid': response.headers['uid'],
      'expiry': response.headers['expiry'],
      'token-type': response.headers['token-type']
    }
    window.localStorage.setItem('authHeaders', JSON.stringify(authHeaders));
  } else {
    window.localStorage.removeItem('authHeaders');
  }
  return response;
}, function (error) {
  return Promise.reject(error)
});