JWT Authentication for Web APP?

-1

I've seen that it's very common to use token-based authentication for RestFul APIs, the question is, can it be implemented for a Web application?

    
asked by Joseph Leon 29.03.2017 в 19:29
source

3 answers

2

Yes. In fact, the W in JWT is by Web . See the documentation: link

    
answered by 29.03.2017 в 19:33
1

Of course What has a web application that does not have a REST client? The browser, you could say. But frameworks and technologies such as React or Vue are REST clients that make calls to services based on REST, ... The JWT model is server-less and is being imposed for its advantages in scalability, also in web applications.

    
answered by 19.04.2018 в 23:10
0

JWT is becoming a standar for almost any authentication method, I recommend it, and this article can help you. Introduction to JWT - Platzi

    
answered by 22.06.2017 в 18:41