How to add JWT to authorization header?

纵饮孤独 提交于 2019-12-12 08:57:20

问题


As descripted on the following slide, it is necessary that the client send the jwt back to the server by a Authorization Header at the next request.

But how can I define the authorisation header and add the JWT to the server?

My current status is:

  1. User send username and pasword to the server by a post.
  2. The server create the the JWT
  3. The server send the signed JWT back to the client and save it in a cookie.

Now my questions:

In case of a Login

As I understand it, now its necessary to send the JWT back to the server. The server verify the token and send it back to finish the login process.

How can I add the JWT to the authentication header?

In case of run a process and receive data from a calculation:

Does I understand right, that the client has to send the JWT from the login to the server and a second JWT with the data? Or can I send the data by POST?


回答1:


So, You are pretty much correct with JWT. All you need to do when sending data from client to server (after JWT creation), is to add it to the request header. Many folks will try to keep along the same path as OAuth and add a Bearer token similar to the node snippet below:

var rp = require('request-promise');
options = {
  method: GET,
  uri: 'https://www.example.com/api/sample',
  headers: {
    Authorization: "Bearer <insert_your_JWT_here>"
  }
}
rp(options).then(function(res){
  <handle_response>
}

Granted I know you mentioned PHP, but the workflows are the same, its just the syntax is different.

Now, to verify that this token is present, the server would need to verify() that the token is valid with the secret that was defined. In every request made by the client, for an authorized endpoint, you would need to send this token everytime.




回答2:


The user above was asking for a BROWSER-BASED means of settings authorization headers, or headers at ALL, for that matter.

(Node.js runs on the server. I realize that the accepted answer above refers to a SERVER authenticating to ANOTHER SERVER, and that the responder calling this "the client side code" is technically correct, with respect to server-to-server communication following the client-server model of who is requesting authorization with whom, but this does not address the true question: how does a browser modify it's authorization header to include a stored token etc.

Aside from the html href, which does not provide a means of accessing or altering headers sent, there are javascript means of sending requests. One can use a standard XHR to demonstrate how one sets the headers via javascript

xhr.open('GET', url, true);
xhr.setRequestHeader("Authorization", "Bearer" + yourtoken);
xhr.send();

You may be able to find php-templated means of inscribing the token into the rendered page (hidden element?) but javascript running in the browser provides the means for manipulating the request headers. It's worth noting that cookies are automatically sent on all requests for a given domain, while local/session storage requires manually setting them usually.



来源:https://stackoverflow.com/questions/41471563/how-to-add-jwt-to-authorization-header

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!