Questions tagged as 'jwt'

1
answer

What is and what is JWT for?

I saw in some comment here on the site, in some question, talking about JWT to solve an authentication problem. I had seen the term loosely before and I thought it was something Java (hehehe). However, by looking at jwt.io , I realize...
asked by 26.09.2016 / 18:24
2
answers

How do I set a token in the header?

Well I use jwt to generate a token only because the example I was following did not show exactly how to collocate the token in the application header. Would anyone know how? Note: I'm using express. app.js // part of the main file app.use(f...
asked by 23.09.2015 / 04:46
1
answer

How to authenticate the application and authorize it to consume a restful API

In a given project, it was necessary to create a restful API that receives data from various forms spread across multiple sites hosted on different servers. The API was created to resolve the following issues: Maintenance: have a single d...
asked by 13.06.2016 / 16:49
1
answer

How to access a specific header from an http response?

I have a Rest API in Java, which makes use of JWT to authenticate users and generate tokens to access their resources. I have an application in AngularJS, which should consume these resources, but I must first request a token in the API. I would...
asked by 26.08.2017 / 14:01
2
answers

How to define a header with a JWT token in a request made by the Requests library?

I am using the Requests Python library to make HTTP requests. I was able to make a post request quietly in order to get a JWT token. But now I need to send this token through a header, but I have no idea how to do it. The code I cur...
asked by 27.10.2016 / 13:58
1
answer

What is the difference between JWT and JWS?

I asked a little question on the site about JWT , which is used to create access tokens through JSON. I tried to implement JWT between two applications that use different versions of a library that generates JWT tokens. Know version 0.4 a...
asked by 10.03.2017 / 18:13
0
answers

What is the best way to do the authorization with JWT? [closed]

I asked this question earlier, but I do not think I was right. So I'm reshaping to try to be clearer. I have several API Rest, where I use basic http, to avoid direct access. Front-end in AngularJS, decoupled from all API Rest. Where th...
asked by 04.10.2016 / 16:18
1
answer

Authentication jwt with vuejs

I'm a bit confused with authentication using jwt token, I have an application on vuejs + vue-router, I'm not wanting to use vuex until I learn how to do it without it (I do not like to use what I do not understand). So I have my API in NodeJS wh...
asked by 14.03.2018 / 18:39
1
answer

Application without back end

I'm doing a gadget here in the company, where it consumes an API that uses JWT authentication (login done with email and password) ... As everything I've done so far has been with PHP, I'm a bit afraid of security issues because the applicati...
asked by 06.09.2018 / 21:05
4
answers

Where does JWT store the tokens?

I'm following the following tutorial to create an authentication system using Node.js and JWT: link Following the steps in the tutorial, I can verify that the user is correct and create JWT. However, the token is apparently not being stored...
asked by 29.07.2016 / 00:52