最新消息:请大家多多支持

JWT Authentication using MERN Stack

教程/Tutorials dsgsd 86浏览 0评论

Published 11/2022
Created by Abhishek Potula
MP4 | Video: h264, 1280×720 | Audio: AAC, 44.1 KHz, 2 Ch
Genre: eLearning | Language: English | Duration: 34 Lectures ( 6h 22m ) | Size: 4.23 GB

Learn how to use JSON Web Token to secure REST applications, manage authentication.

What you’ll learn
What is JWT ? (JSON Web Token)
How to make your application more secure
Encrypting password with hashing and verification
Manage User security roles with tokens

Requirements
Familiarity with Javascript
Basic Knowledge of MongoDb database
Prior experience in React and Node JS
Clear Idea about Redux State Management Library

Description
What is JSON Web Token?JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA or ECDSA.JSON Web Token (JWT, pronounced /dʒɒt/, same as the word “jot”[1]) is a proposed Internet standard for creating data with optional signature and/or optional encryption whose payload holds JSON that asserts some number of claims. The tokens are signed either using a private secret or a public/private key.JWTs consist of three parts separated by dots (.), which are:HeaderPayloadSignatureLet’s explain some concepts of this definition further.Compact: Because of its size, it can be sent through an URL, POST parameter, or inside an HTTP header. Additionally, due to its size its transmission is fast.Self-contained: The payload contains all the required information about the user, to avoid querying the database more than once.In authentication, when the user successfully logs in using their credentials, a JSON Web Token will be returned. Since tokens are credentials, great care must be taken to prevent security issues. In general, you should not keep tokens longer than required.You also should not store sensitive session data in browser storage due to lack of security.Whenever the user wants to access a protected route, it should send the JWT, typically in the Authorization header using the Bearer schema. Therefore the content of the header should look like the following.

Who this course is for
Developers interested in JSON Web Token (JWT)
Developers interested in Developing Websites
Developers interested in React JS
Developers interested in Node JS


Password/解压密码www.tbtos.com

资源下载此资源仅限VIP下载,请先

转载请注明:0daytown » JWT Authentication using MERN Stack

发表我的评论
取消评论
表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址