Posts

Showing posts from September, 2023

Usage of ASP.Net Core 3.1 with JWT

Image
          Hi everybody, I am going to try to explain the definition of JWT and how to use in our .Net Core project. Lets look at the definition.          What is JWT?          JWT(JSON Web Token), is a standard of RFC7519. is designed to communicate with client-server as a JSON object. Generally, it is a way to use for authentication. We can list the advantages of using JWT as follows;      U ses JSON,     Transfer on URL     Not necessary to use cookies     Method and logic is easy and fast to verification     Uses each client that can make a request HTTP with generated token     Not need th HTTP session for web applciation and  be appropriate for usage of stateless     E nsuring data integrity         As you can see on below, there is three section in genrated key. These sections is coded with Base...