如何使用json开发web_如何通过使用JSON Web令牌简化应用程序的身份验证

如何使用json开发web

by Sudheesh Shetty

由Sudheesh Shetty

如何通过使用JSON Web令牌简化应用程序的身份验证 (How to simplify your app’s authentication by using JSON Web Token)

Every application we come across today implements security measures so that the user data is not misused. Security is always something that is changing and evolving. Authentication is one of the essential part of every application.

我们今天遇到的每个应用程序都实施安全措施,以便不会滥用用户数据。 安全始终是不断变化和发展的事物。 身份验证是每个应用程序必不可少的部分之一。

There are various ways to authenticate the user. Let us discuss token based authentication using node.js application. For this, we will be using JSON Web tokens.

有多种验证用户身份的方法。 让我们讨论使用node.js应用程序进行的基于令牌的身份验证。 为此,我们将使用JSON Web令牌。

什么是JSON Web令牌(JWT)? (What are JSON Web Tokens (JWT)?)

JSON Web Tokens (JWT) is a standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.

JSON Web令牌(JWT)是一种标准,它定义了一种紧凑且自包含的方式,用于在各方之间作为JSON对象安全地传输信息。

  • Compact: Smaller size so that easily transferred.

    紧凑 :体积更小,易于转移。

  • Self-Contained: It contains all information about the user.

    自包含:它包含有关用户的所有信息。

它们如何工作? (How Do they work?)

When a user sends a request with required parameters like username and password. The application checks if username and password are valid. On validation, the application will create a token using a payload and a secret key. It will then send the token back to the user to store and send it with each request. When user sends request with this token, application verifies validity with same secret key. If the token is valid, the request is served, else the application will send an appropriate error message.

用户发送带有必需参数(如用户名和密码)的请求时。 该应用程序检查用户名和密码是否有效。 验证后,应用程序将使用有效负载和密钥创建令牌。 然后,它将令牌发送回用户以进行存储并随每个请求发送。 当用户使用此令牌发送请求时,应用程序将使用相同的密钥验证有效性。 如果令牌有效,则请求得到响应,否则应用程序将发送适当的错误消息。

结构体 (Structure)

Basic structure of JWT is something like

JWT的基本结构类似于

header payload signature
  • header: It contains token type and algorithm used to make signature. Gets encoded to base64.

    标头:包含令牌类型和用于签名的算法。 获取编码为base64。

  • payload: Any custom user data like username and email.

    有效负载:任何自定义用户数据,例如用户名和电子邮件。

  • signature: Hash of encoded header, payload and a secret key.

    签名:编码的标头,有效负载和密钥的哈希。

智威汤逊的优势 (Advantages of JWT)

  • Single Key: There is no need for database calls every time to verify the user. A single secret key will decode tokens provided by any user.

    单键:无需每次都进行数据库调用来验证用户。 单个密钥将解码任何用户提供的令牌。

  • Portable: Same token can be used among different domains or different platforms. All it needs is the key.

    可移植:相同的令牌可以在不同的域或平台之间使用。 它所需要的只是关键。

  • Easy Expire: One can set expiration time using JWT. After that time JWT expires.

    简易到期时间:可以使用JWT设置到期时间。 在此之后,JWT到期。

我们该怎么做? (How can we do it?)

We are going to build a node.js application with few routes and authenticate them using tokens. Basic knowledge of node.js and javascript is required.

我们将用很少的路由构建一个node.js应用程序,并使用令牌对其进行身份验证。 需要具备node.js和javascript的基础知识。

Step 1 — Open terminal. Start a new project in a directory

步骤1 —打开终端。 在目录中启动新项目

cd auth
npm init

This will start a new project. Process will ask for certain information. Provide all the details required. Process will create package.json and it will look something like this.

这将启动一个新项目。 过程将要求某些信息。 提供所需的所有详细信息。 流程将创建package.json ,看起来像这样。

{  "name": "auth",  "version": "1.0.0",  "description": "application to explain authentication",  "main": "server.js",  "scripts": {    "test": "echo \"Error: no test specified\" && exit 1"  },  "author": "Your name",  "license": "ISC"}

Step 2 — Install the dependencies. Again go back to terminal and paste the following line.

第2步 -安装依赖项。 再次回到终端并粘贴以下行。

npm install express body-parser jsonwebtoken --save
  • express: Node.js web application framework.

    表达: Node.js Web应用程序框架。

  • body-parser: To get parameters from our POST request.

    body-parser:从POST请求中获取参数。

  • jsonwebtoken: To create and verify tokens.

    jsonwebtoken:创建和验证令牌。

After installing the dependencies. Our package.json will look something like this:

安装依赖项后。 我们的package.json将如下所示:

{  "name": "auth",  "version": "1.0.0",  "description": "application to explain authentication",  "main": "server.js",  "scripts": {    "test": "echo \"Error: no test specified\" && exit 1"  },  "author": "Your name",  "license": "ISC",  "dependencies": {    "body-parser": "^1.17.2",    "express": "^4.15.3",    "jsonwebtoken": "^7.4.1"  }}

Step 3 — Create server

第3步-创建服务器

Let us create a server, serving at port 3000 which sends the index.html when / route is called. We will also create /login API which authenticates the user and a /getusers API which gives list of users. Let’s create dummy data for now and store it in the ‘users’ array. You may also replace them with database calls.

让我们创建一个服务器,该服务器的端口为3000,当调用/ route时,该服务器发送index.html。 我们还将创建用于验证用户身份的/login API和提供用户列表的/getusers API。 现在,让我们创建虚拟数据并将其存储在“用户”数组中。 您也可以将它们替换为数据库调用。

Step 4 — Build the Client

步骤4 —建立客户

Let us create a client using HTML, Bootstrap and JavaScript. Our client has two parts: login screen and a place to retrieve users. Login screen will contain text boxes for email and password and a button to send request. We will also add a text box and button to pass the token and get list of users.

让我们使用HTML,Bootstrap和JavaScript创建客户端。 我们的客户有两个部分:登录屏幕和一个检索用户的地方。 登录屏幕将包含用于输入电子邮件和密码的文本框,以及用于发送请求的按钮。 我们还将添加一个文本框和一个按钮来传递令牌并获取用户列表。

Step 5 — Start the application

步骤5 —启动应用程序

node server.js

我们的应用程序安全吗? (Is our app secure?)

No, you might see that even if you don’t pass the token you can get the list of all users. We have not implemented authentication yet. Let’s add authentication to /getusers API so that users with valid token can retrieve users list.

不,您可能会看到,即使不传递令牌,也可以获得所有用户的列表。 我们尚未实现身份验证。 让我们向/getusers API添加身份验证,以便具有有效令牌的用户可以检索用户列表。

如何添加身份验证? (How to Add Authentication?)

  1. Include JWT to the server.js file.

    将JWT包含在server.js文件中。
var jwt=require('jsonwebtoken');

2. Pass the payload(any object, here pass the user object itself) and a secret string to sign function and create a token.

2.传递有效负载(任何对象,这里传递用户对象本身)和一个秘密字符串来签名函数并创建令牌。

var token=jwt.sign(<user>,<secret>);

3. When the token is created successfully pass the same to client.

3.成功创建令牌后,将其传递给客户端。

res.json({token:token});

You can then store token on client side and pass it every time during the session to authenticate. Let’s change the “getlist” function so that we can pass token to the server when we want to access users list.

然后,您可以在客户端存储令牌,并在会话期间每次传递令牌以进行身份​​验证。 让我们更改“ getlist”功能,以便在我们要访问用户列表时可以将令牌传递给服务器。

Let’s add a middleware to authenticate /getusers or any secure route that is added in future. Make sure that all routes that needs authentication is below the middleware.

让我们添加一个中间件来认证/getusers或将来添加的任何安全路由。 确保所有需要身份验证的路由都在中间件下方。

In server.js, first we have login route which creates token. After that we have middleware which we will use to verify the token. All the routes which needs authentication are after middleware. The order is very important.

在server.js中,首先我们有创建令牌的登录路由。 之后,我们将使用中间件来验证令牌。 所有需要认证的路由都在中间件之后。 顺序很重要。

4. To decode, you pass the token and secret key to verify function. Function will return error if the token is invalid or success if token is valid.

4.要进行解码,请传递令牌和密钥以验证功能。 如果令牌无效,函数将返回错误;如果令牌有效,则函数将返回成功。

jwt.verify(token,"samplesecret",(err,decod)=>{  //your logic})

Call next() so that respective routes are called.

调用next(),以便调用相应的路由。

Final server.js will look like this:

最终的server.js将如下所示:

Final index.html will look like this:

最终的index.html将如下所示:

That’s it. This is a simple example of how to use token to authenticate your app. I have put the complete code on GitHub. You may check it there.

而已。 这是一个简单的示例,说明如何使用令牌来验证您的应用程序。 我已经将完整的代码放在GitHub上。 您可以在那里检查。

sudheeshshetty/JWT_AuthContribute to JWT_Auth development by creating an account on GitHub.github.com

sudheeshshetty / JWT_Auth 通过在GitHub上创建一个帐户来贡献JWT_Auth开发。 github.com

Thanks for reading and do follow me and recommend the same to others by clicking on ♡ . My twitter handle is sudheeshshetty.

感谢您的阅读,请关注我并通过单击♡向其他人推荐。 我的推特句柄是sudheeshshetty 。

翻译自: https://www.freecodecamp.org/news/how-to-make-authentication-easier-with-json-web-token-cc15df3f2228/

如何使用json开发web

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395391.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

c++ 实现录音并且指定到文件_通话自动录音,留下美好回忆,记录完整录音证据...

手机通话&#xff0c;如果自动录音多好&#xff0c;许多人与我一样抱有这个想法。记得华为Android版本5.0时代&#xff0c;手机没有自动录音功能&#xff0c;我一直到网上下载自动通话录音软件&#xff0c;有时甚至是下载ROOT版的带自动通话功能的EMUI版本进行刷机安装。那个时…

2639-Bone Collector II (01背包之第k优解)

题目链接&#xff1a; http://acm.hdu.edu.cn/showproblem.php?pid2639 求第k优解的关键代码&#xff1a; 用两个数组记录两种状态&#xff08;选择或不选择&#xff09;&#xff0c;并且只要记录前k次。在这两个数组中都是前k次可能的最优解。所以我们只要把这两个数组做比较…

html自动按键,VBS脚本和HTML DOM自动操作网页

本来是想通过JS实现对其他页面的控制&#xff0c;发现跨域无法获取页面DOM来操作。接着考虑bat&#xff0c;发现也实现不了&#xff0c;于是想到vbs。vbs还是很强大啊&#xff0c;病毒之类很多都是vbs脚本啊。vbs打开浏览器&#xff0c;然后通过dom来操作页面&#xff0c;可以实…

opencv在同一窗口打印多张图片

首先&#xff0c;由于cv2处理的图片是通过ndarray的格式操作的&#xff0c;也就是说通过array的拼接就可以实现图片的拼接&#xff0c;那么之后就可以通过简单的imshow将合并的图片打印从而达到在一个窗口中显示多张图片的目的。 import cv2 import numpy as npimg1 cv2.imrea…

dj打碟怎么学_学DJ打碟 - Rane声卡连接

上一篇内容中&#xff0c;老师讲过在学DJ打碟的时候&#xff0c;是离不开对软件方面的操作&#xff0c;其实每一个学习过程&#xff0c;当你学会之后&#xff0c;在“回头看”的时候&#xff0c;都会觉得&#xff1a;原来学DJ打碟这么简单啊&#xff0c;这就是已经学习过的人会…

微信企业号第三方应用开发[一]——创建套件

注&#xff1a;文中绿色部分为摘自微信官方文档 第三方应用提供给企业的是一个应用&#xff0c;但是应用必须在套件下创建&#xff0c;所以第一步是要创建套件。 注册成为应用提供商&#xff0c;必须输入以下信息&#xff1a; 信息项要求及说明企业Logo应用提供商的企业Logo&am…

advanced east_SpriteKit Advanced —如何构建2,5D游戏(第二部分)

advanced eastby Luke Konior卢克科尼尔(Luke Konior) SpriteKit Advanced —如何构建2,5D游戏(第二部分) (SpriteKit Advanced — How to build a 2,5D game (Part II)) 介绍 (Intro) This article shows how to write basic shaders in the SpriteKit. It’s split into two…

html原生上传,一个基于HTML5及原生JS的文件上传组件--JohnUploader

运行效果图一、组件介绍基本特点基于HTML5的FileReader和FormData可以完成多文件选择&#xff0c;并预览完成文件的异步上传原生XHR对象&#xff0c;适配多浏览器代码class JohnUploader{url;fileField;vollay;/**** param url 文件上传的地址* param fileField 一个"文件…

[20170617]vim中调用sqlplus.txt

[20170617]vim中调用sqlplus.txt --//以前写过一篇emacs下调用sqlplus的文章,一直想学emacs,受限制自己掌握vim,对学习它没有兴趣,原链接如下: --//http://blog.itpub.net/267265/viewspace-1309032/ --//实际上vim也有插件连接数据库,我觉得不好用,一直没这样用. --//今天在整…

centos redis验证_centos7中安装、配置、验证、卸载redis

本文介绍在centos7中安装、配置、验证、卸载redis等操作&#xff0c;以及在使用redis中的一些注意事项。一 安装redis1 创建redis的安装目录利用以下命令&#xff0c;切换到/usr/local路径cd /usr/local键入以下命令&#xff0c;新建一个redis目录&#xff0c;用于放置redis软件…

实习生解雇_我们解雇了我们的顶尖人才。 我们做出的最佳决定。

实习生解雇by Jonathan Solrzano-Hamilton乔纳森索洛萨诺汉密尔顿(JonathanSolrzano-Hamilton) 我们解雇了我们的顶尖人才。 我们做出的最佳决定。 (We fired our top talent. Best decision we ever made.) “You will never be able to understand any of what I’ve create…

微信企业号第三方应用开发[二]——创建应用

在应用套件里添加应用 当你创建完应用套件后&#xff0c;需要在套件配置应用&#xff0c;应用的信息填写如下。 基本信息&#xff1a; 信息项要求及说明应用Logo应用的Logo&#xff0c;小于2M&#xff0c;640*640&#xff0c;在授权页会被用于展示。应用名称应用的名称&#xf…

es6新增的html标签,javascript – 如何导入已在html中的标签中定义的es6模块?

我可以在我的html文件me.html中定义一个模块&#xff1a;import Atom from ./atom.js;console.log("definition of getAtom")export default function getAtom(){return new Atom(atom);}console.log("exported getAtom")另见>是否可以将该“匿名”模块…

jQ效果:简单的手风琴效果

实现效果如图所示&#xff1a; html结构&#xff1a; <div class"item_box box10"><div class"item_box_wp"><div class"voice_2"><ul><li class"li1" id"li1"><div class"fold"…

golang 日志分析_容器日志采集利器:Filebeat深度剖析与实践

在云原生时代和容器化浪潮中&#xff0c;容器的日志采集是一个看起来不起眼却又无法忽视的重要议题。对于容器日志采集我们常用的工具有filebeat和fluentd&#xff0c;两者对比各有优劣&#xff0c;相比基于ruby的fluentd&#xff0c;考虑到可定制性&#xff0c;我们一般默认选…

机器学习做自动聊天机器人_建立聊天机器人需要什么? 让我们找出答案。

机器学习做自动聊天机器人by Vanco Stojkov通过Vanco Stojkov 建立聊天机器人需要什么&#xff1f; 让我们找出答案。 (What does it take to build a chatbot? Let’s find out.) Without any delay, the image below shows what we are building:没有任何延迟&#xff0c;下…

UVA 11582 Colossal Fibonacci Numbers!【数学】

大一刚开始接触ACM就买了《算法竞赛入门经典》这本书&#xff0c;当时只能看懂前几章&#xff0c;而且题目也没做&#xff0c;粗鄙地以为这本书不适合自己。等到现在快大三了再回过头来看&#xff0c;发现刘老师还是很棒的&#xff01; 扯远了。。。 题意&#xff1a;问f[a^b]%…

Codeforces 919D Substring (拓扑图DP)

手动博客搬家: 本文发表于20180716 10:53:12, 原地址https://blog.csdn.net/suncongbo/article/details/81061500 给定一个\(n\)个点\(m\)条边的有向图&#xff08;不一定无环&#xff09;&#xff0c;每个点上有一个小写字母。要找一条路径&#xff0c;使得路径上出现次数最多…

layui自定义查询条件html页面,Layui的数据表格+springmvc实现搜索功能的例子_飛雲_前端开发者...

如下所示&#xff1a;主要在前端页面加&#xff1a;搜索ID&#xff1a;useridcontent搜索在reload:function () {var keyWord$("#keyWord").val();var keyType$("#key_type option:selected").val();table.reload(contenttable,{method:post,where:{keyWor…

mysql+keepalived 双主热备高可用

理论介绍&#xff1a;我们通常说的双机热备是指两台机器都在运行&#xff0c;但并不是两台机器都同时在提供服务。当提供服务的一台出现故障的时候&#xff0c;另外一台会马上自动接管并且提供服务&#xff0c;而且切换的时间非常短。MySQL双主复制&#xff0c;即互为Master-Sl…