客户端集成IdentityServer4

Posted sunxuchu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了客户端集成IdentityServer4相关的知识,希望对你有一定的参考价值。

1. vs code 终端执行  dotnet new webapi --name ClientCredentialApi

2. 找到ValuesController.cs

引用  using Microsoft.AspNetCore.Authorization;

    [Authorize]
    [Route("api/[controller]")]
    [ApiController]
    public class ValuesController : ControllerBase
    {
    }

3. Nuget 导入 IdentityServer4.AccessTokenValidation

4. 修改 Startup.cs 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;

namespace ClientCredentialApi
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {

            //注册Authentication
            services.AddAuthentication("Bearer").AddIdentityServerAuthentication(options =>
            {
                options.Authority = "https://localhost:5000";
                options.RequireHttpsMetadata = false;
                options.ApiName = "api";
            });

            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseHsts();
            }

            app.UseHttpsRedirection();

            app.UseAuthentication();

            app.UseMvc();
        }
    }
}

5. 启动 " IdentityServer4 登陆中心服务 " ,使用PostMan 调用 http://localhost:5003/connect/token

技术分享图片

 

以上是关于客户端集成IdentityServer4的主要内容,如果未能解决你的问题,请参考以下文章

Asp.net core IdentityServer4与传统基于角色的权限系统的集成

IdentityServer4 如何在授权代码流中存储和更新令牌

ServiceStack 与 IdentityServer4 集成

技术分享|明源云天际集成开放平台接口中心基于IdentityServer4的鉴权机制

Asp.net core IdentityServer4与传统基于角色的权限系统的集成

Identity Server 4 - 如何解决客户端注销后访问令牌仍然有效?