Jwt (Json Web Token) is an open standard for securely transmitting information between parties as a Json object.Jwt consists of three parts: Header, Payload, and Signature, which are combined into a single encoded string.Jwt is used for authentication and authorization purposes in web applications.To use Jwt, the server generates a refresh token and an access token, which are sent to the client for authentication and subsequent authorization.