有些文章不一定是为了上首页投稿首页推荐@IT·互联网

Issuing and authenticating JWT t

2017-06-20  本文已影响214人  KennethChen93

在ASP.NET Core WebAPI中发行和验证 JWT tokens.

Introduction

如果你想看一个例子关于ASP.NET Core 1怎样发行JWT tokens以及在简单的应用程序中自动控制持有者的使用权通过关于一个 [Authorize] attribute(特别是集中在基于声明式验证授权claims-based authorisation使用ASP.NET Core MVC的策略特性policy features)在Web API 项目上。then you are in the right place!

这篇文字是这篇文章史诗般的努力的第一部分。并且解决了JWT tokens发行方面的的问题。即是:

如果你在这里,因为你需要一些与刷新令牌和适当的身份管理相关的东西。我建议你看一看 this tutorial by Sean Walsh关于如何建立OpenIddict 在ASP.NET Core.

Requirements
Assumed
  1. That you know what JSON Web Tokens are
  2. That you know how to create a Web API project with ASP.NET Core MVC
  3. That you know where the ASP.NET documentation is for anything not specifically mentioned that might be new to you (also feel free to ask in the comments)

Initial Setup

示例解决方案在相同的解决方案中有令牌服务器和资源服务器。因为我们需要在资源端进行身份验证。最好的做法是把所有的东西都锁定,只打卡你需要的控制器和方法.换句话说,默认情况下不允许匿名访问并关闭需要身份验证的的控制器。我们需要身份验证默认情况下和允许匿名访问的开放的控制器。我们通过替换MVC服务配置in the ConfigureServices method in Startup.cs with the following:

接下来,我们将添加一个基本的ApplicationUser模型:

我们还需要一些方法来配置我们的令牌,我们这样做的方式是通过JwtIssuerOptions类,它允许我们设置一些 JWT registered claimJWT注册要求。并在签名时提供一些附加的功能。

Issuing a JSON Web Token

Options and Configuration

在创建JwtController之前,我们需要配置JwtIssuerOptions,并将其设置为注入。我们要做的第一件事是在appsettings.json中添加一些配置设置。这个文件将被创建通过我们由vs作为过渡支架的一部分,我们为它添加了一个简单的JwtIssuerOptions配置部分(第2-5行)。

NB! Take care that the ‘Audience’ value matches the ‘applicationUrl’ under ‘iisSettings’ -> ‘iisExpress’ in your ‘launchSettings.json’ file (under ‘Properties’ when you view your project in the VS Solution Explorer pane).

接下来我们要做的就是告诉应用程序 我们想要使用的选项。optionsThis is a single call to AddOptions on the services instance in the ConfigureServices method in Startup.cs (line 8) and the last part of the JwtIssuerOptions setup is to initialise an instance and make it available to the ASP.NET dependency injection system (lines 13 – 21 below).

特别注意前两行,从一些安全的位置,比如环境设置中检索密钥非常重要,而不是我在这里做的。我这样做的原因是让这个例子更容易编写跟踪。

注意:以上我大量使用了nameof()表达式, I heartily recommend it!

Adding the Controller

最后把我们到JwtController将为我们提供JWT。

Testing the JWT Controller

对于测试和验证部分,您需要有一些方法向应用程序发送请求,我特别注意Postman 并将在整个过程中使用它。

  1. 启动例子的解决方案(你的应用程序)。
  2. If you are using the example solution, the application’s URL ishttp://localhost:1783/ (configured in launchSettings.json)
  3. Start up Postman

Configure a POST to http://localhost:1783/api/jwt with ‘x-www-form-urlencoded’ selected under Body,为表单提供两个键/值 ‘username’ as ‘MickeyMouse’ and ‘password’ as ‘MickeyMouseIsBoss123’,(记住,在JwtController上的GetClaimsIdentity方法中,这些值是硬编码的。)

点击”发送“和等待(如果您在调试模式下通过vs运行您的解决方案,您可以在代码中添加一些断点来跟踪流程流。)如果一切都是正确的,您应该在响应体中接收到一些JSON,其外观与下面的相似:

Paste_Image.png

这就是它,它是一个基本的,但功能强大的JSON Web令牌服务器,激动人心的时刻!

(如果出于某种原因,你失败了,无法弄明白发送了什么,请在评论中自由提问。)

Cheers!

What to Expect in Part II

Part II将通过授权属性[Authorize]自动控制对JWT的访问。利用JwtBearer认证中间件。特别关注在Web API项目中使用ASP.NET Core用户声明的策略特性。

Links

  1. Token Authentication in ASP.NET Core(without this blog post by Nate Barbettini, this multi-part tutorial of mine would not have been possible)
  2. Supported Token and Claim Types (although aimed at Azure and ADAuth specifically, the first part is a useful, general overview of tokens
  3. ASP.NET Core Authorization Lab
上一篇下一篇

猜你喜欢

热点阅读