Understanding JSON Web Tokens (JWT)
JSON Web Token is known as JWT. It is an open standard that is used for transmitting information between parties as a JSON object. JWT is a secure way for…
Favourite tutorials for developers
JSON Web Token is known as JWT. It is an open standard that is used for transmitting information between parties as a JSON object. JWT is a secure way for…
I am going to explain about JWT which stands for JSON Web Token in this article. It is useful for Authentication and Authorization. Authentication is validating the user with credentials…
This article is about JWT authentication using .NET 8.0 version. We will be using the Microsoft Identity framework to store user and role information. Authentication is the process of validating…
This article is a step-by-step guide to implementing JWT-based Authentication in ASP.NET Core API. The goal of this article is to first start by learning how JSON Web Tokens (or…
This article explains how to get started with Identity.UI in ASP.Net Core MVC user authentication and registration. In this article, we discussed how to use Identity UI in ASP.NET Core…
SSH, or secure shell, is an encrypted protocol used to administer and communicate with servers. When working with a Linux server you may often spend much of your time in…
APIs often self-document information, such as their implementation and internal structure, which can be used as intelligence for a cyber-attack. Additional vulnerabilities, such as weak authentication, lack of encryption, business…
Security is an important part in any software development and APIs are no exception. Even for a public API, having control over who can access your service is a usual…
This article shows you how to use the OkHttp library to send an HTTP GET/POST requests and some frequent used examples.
This article shows you how to use Apache HttpClient to send an HTTP GET/POST requests, JSON, timeout, redirection and some frequent used examples. This article shows you how to use…