zoukankan      html  css  js  c++  java
  • Identity Server introspect 调用 /connect/introspect

    IdentityServer document is not write clear on this part. so it really confuse me and put me on several hours to resovle this problem.

    1. 我的Identity Server Config

    public class Config
        {
            public static IEnumerable<IdentityResource> GetIdentityResources()
            {
                return new List<IdentityResource>
                {
                    new IdentityResources.OpenId(),
                    new IdentityResources.Profile(),
                };
            }
    
            public static IEnumerable<ApiResource> GetApiResources()
            {
                return new List<ApiResource>
                {
                    new ApiResource("Library.Api","Library Api")
                    {
                        ApiSecrets = {new Secret("secret".Sha256())} ,
                        Scopes = { new Scope("api1")}
    
                    }
                };
    
            }
    
            // clients want to access resources (aka scopes)
            public static IEnumerable<Client> GetClients()
            {
                // client credentials client
                return new List<Client>
                {
                    #region ClientCredentials
                    // machine to machine client
                    new Client
                    {
                        ClientId = "client.identity",
                        ClientSecrets = { new Secret("secret".Sha256()) },
    
                        AllowedGrantTypes = GrantTypes.ClientCredentials,
                        // scopes that client has access to
                        AllowedScopes = { "api1" }
                    },
                    #endregion 
    
                    #region  ResourceOwnerPassword
                    // resource owner password grant client
                    new Client
                    {
                        ClientId = "password.identity",
                        AllowedGrantTypes = GrantTypes.ResourceOwnerPassword,
                        AccessTokenLifetime = 2592000,          //15天
                        //AccessTokenLifetime = 60,          //测试60秒过期
                        SlidingRefreshTokenLifetime = 2592000,  //30天
                        AllowOfflineAccess = true,              //返回refreshToken
                        AlwaysSendClientClaims = true,          //
                        UpdateAccessTokenClaimsOnRefresh = true,
                        AbsoluteRefreshTokenLifetime = 0,       // refreshToken不过期
                        RefreshTokenExpiration = TokenExpiration.Sliding,
                        AlwaysIncludeUserClaimsInIdToken = true,
                        ClientSecrets ={
                            new Secret("secret".Sha256())
                        },
                        AllowedScopes = {
                            "api1",
                            StandardScopes.OfflineAccess, //如果要获取refresh_tokens ,必须在scopes中加上OfflineAccess
                            StandardScopes.OpenId,//如果要获取id_token,必须在scopes中加上OpenId和Profile,id_token需要通过refresh_tokens获取AccessToken的时候才能拿到(还未找到原因)
                            StandardScopes.Profile//如果要获取id_token,必须在scopes中加上OpenId和Profile
                          },
                    },
                    #endregion
                    
                };
            }
    
        }

    2. 直接调用 /connect/introspect

    官网文档:

    POST /connect/introspect
      Authorization: Basic sValue
      
      token=<token>

    主要问题就是 sValue是你定义的Api Resource的名字和ApiSecrets. 但是需要将他们转成Base64的字符

    var sValue = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", "Library.Api", "secret")));

    这样你就可以在Postman上进行调用

    2. 通过代码调用

            public async Task<ActionResult> ValidToken(string token)
            {
                ApiResultModel apiResult = new ApiResultModel();
    
                var CurrentRequest = httpContextAccessor.HttpContext.Request;
                string sUrl = CurrentRequest.Scheme + "://" + CurrentRequest.Host.Value;
    
                var client = new HttpClient();
    
                var disco = await client.GetDiscoveryDocumentAsync(sUrl);
    
                var result = await client.IntrospectTokenAsync(new TokenIntrospectionRequest
                {
                    Address = disco.IntrospectionEndpoint,
    
                    ClientId = "Library.Api", // this is your APi Resource name
                    ClientSecret = "secret",  // this is your APi resource secret
                    Token = token
                });
    
                if (result.IsError)
                {
                    apiResult.Code = ResultCode.Error;
                    apiResult.Data = result.Error;
                    return new JsonResult(apiResult);
                }
    
                apiResult.Code = ResultCode.Success;
                apiResult.Data = result.IsActive;
                return new JsonResult(apiResult);
    
            }
    public class ApiResultModel
        {
            public ResultCode Code { get; set; }
            public string Message { get; set; }
            public object Data { get; set; }
    
            public ApiResultModel() { }
            public ApiResultModel(ResultCode code,string message,object data)
            {
                Code = code;
                Message = message;
                Data = data;
            }
        }
    
        public enum ResultCode
        {
            Success = 0,
            Error = 1,
        }

    Postman 测试

  • 相关阅读:
    __weak
    c++界面设计皮肤工具
    执行游戏时出现0xc000007b错误的解决方法
    2.4.1-Java语言基础(常量)
    句法模式识别(一)-串文法
    一步一步写算法(之hash表)
    LaTeX新人教程,30分钟从全然陌生到基本入门
    初次当面试官的经历和感触
    Android入门第八篇之GridView(九宫图)
    Android-Cannot merge new index 66195 into a non-jumbo instruction的解决的方法
  • 原文地址:https://www.cnblogs.com/VirtualMJ/p/12831498.html
Copyright © 2011-2022 走看看