首页 > 其他 > 详细

IdentityServer4 发现端点

时间:2020-06-18 13:21:54      阅读:62      评论:0      收藏:0      [点我收藏+]

 

URL方式

发现端点可通过/.well-known/openid-configuration相对于基址使用

如: https://demo.identityserver.io/.well-known/openid-configuration 

编程方式

        static IDiscoveryCache _cache = new DiscoveryCache("服务器基地址");

            var disco = await _cache.GetAsync();
            if (disco.IsError) throw new Exception(disco.Error);

            var client = new HttpClient();
      //这里举例密码获取token
var response = await client.RequestPasswordTokenAsync(new PasswordTokenRequest { Address = disco.TokenEndpoint, ClientId = "roclient.reference", ClientSecret = "secret", UserName = "bob", Password = "bob", Scope = "scope4.scope" }); if (response.IsError) throw new Exception(response.Error); return response;

需要引用: IdentityModel 

 

IdentityServer4 发现端点

原文:https://www.cnblogs.com/myfqm/p/13156666.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!