当前位置: 首页 > 软件库 > Web应用开发 > >

securing-restful-apis-with-jwt

授权协议 Readme
开发语言 JavaScript
所属分类 Web应用开发
软件类型 开源软件
地区 不详
投 递 者 麹正业
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Securing RESTful APIs with JWT

How to secure a Nodejs RESTful CRUD API using JSON web tokens?

This tutorial will demo how to use JWT with an existing bare bonesAPI using mongodb as the database.

It consist of a User model and controller. The modeldefines the data, and the controller will contain allthe business logic needed to interact with the database.

It has a db file which will be used toconnect the app to the database, and an app file usedfor bootstrapping the application itself.

The server file is used to spin up the server and tells theapp to listen on a specific port.

The auth folder contains the configuration for registering andlogging users in, signing and verifying tokens.

Follow the tutorial for this repository at https://medium.freecodecamp.org/securing-node-js-restful-apis-with-json-web-tokens-9f811a92bb52

 相关资料
  • 要创建移动应用程序,单页面应用程序,使用AJAX调用并向客户端提供数据,您需要一个API。 如何构造和命名这些API和端点的流行架构风格称为REST(Representational Transfer State) 。 HTTP 1.1的设计考虑了REST原则。 REST由Roy Fielding于2000年在他的论文Fielding Dissertations中介绍。 RESTful URI和方

  • 始终需要API来创建移动应用程序,单页面应用程序,使用AJAX调用并向客户端提供数据。 如何构造和命名这些API和端点的流行架构风格称为REST(Representational Transfer State) 。 HTTP 1.1设计考虑了REST原则。 REST由Roy Fielding在2000年的Paper Fielding Dissertations中引入。 RESTful URI和方法

  • 一、提交测试请求 你可以通过执行POST或GET将测试提交到WebPagetest:http://www.webpagetest.org/runtest.php 响应后,将被重定向到结果页面,或者获得一个xml响应(如果请求了xml)。 1.1 参数 参数名 Required 描述 默认值 url 必选 要测试的URL label 测试的标签 location 测试地点 Dulles 5Mbps

  • 翻译者注:本系列的原文名为:Designing a RESTful API with Python and Flask ,作者是 Miguel Grinberg 。 近些年来 REST (REpresentational State Transfer) 已经变成了 web services 和 web APIs 的标配。 在本文中我将向你展示如何简单地使用 Python 和 Flask 框架来创建

  • 我计划在AngularJS上使用Spring RESTful API后端和客户端创建应用程序。 我想用Google OAuth2授权服务器来保护我的Spring RESTful API。 我有一个建筑问题: 在谷歌成功授权后,我将从谷歌OAuth2授权服务器收到accessToken。我是否需要将此访问令牌传输到我的客户端应用程序(AngularJS),或者我需要在我的后端应用程序中引入一些自己的

  • Kafka includes five core apis: The Producer API allows applications to send streams of data to topics in the Kafka cluster. The Consumer API allows applications to read streams of data from topics in