博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IdentityServer4 通过 AccessToken 获取 UserClaims
阅读量:6258 次
发布时间:2019-06-22

本文共 1783 字,大约阅读时间需要 5 分钟。

实现效果:通过生成的access_token获取用户的一些信息,这样客户端请求的时候,不需要传递用户信息了。

示例配置:

public void ConfigureServices(IServiceCollection services){    services.AddIdentityServer()        .AddTemporarySigningCredential()        .AddInMemoryIdentityResources(new List
{ new IdentityResources.OpenId(), //必须要添加,否则报无效的scope错误 new IdentityResources.Profile(), }) .AddInMemoryApiResources(new List
{ new ApiResource("api1", "My API") }) .AddInMemoryClients(new List
{ new Client { ClientId = "client", AllowedGrantTypes = GrantTypes.ResourceOwnerPassword, ClientSecrets = { new Secret("secret".Sha256()) }, AllowedScopes = { "api1", IdentityServerConstants.StandardScopes.OpenId, //必须要添加,否则报forbidden错误 IdentityServerConstants.StandardScopes.Profile } } });}

Http 调用示例:

GET /connect/userinfoAuthorization: Bearer 
HTTP/1.1 200 OKContent-Type: application/json{ "sub": "248289761001", "name": "Bob Smith", "given_name": "Bob", "family_name": "Smith", "role": [ "user", "admin" ]}

UserInfoClient调用示例:

var token = "";var client = new DiscoveryClient(_appSettings.IssuerUri);client.Policy.RequireHttps = false;var disco = await client.GetAsync();var userInfoClient = new UserInfoClient(doc.UserInfoEndpoint);var response = await userInfoClient.GetAsync(token);var claims = response.Claims;

本文转自田园里的蟋蟀博客园博客,原文链接:http://www.cnblogs.com/xishuai/p/identityserver4-get-user-claims-by-token.html,如需转载请自行联系原作者

你可能感兴趣的文章
JDBC操作数据库
查看>>
Android中RelativeLayout的字符水平(垂直居中)对齐
查看>>
--@angularJS--独立作用域scope绑定策略之&符策略
查看>>
乾坤合一~Linux设备驱动之USB主机和设备驱动
查看>>
Python IDLE快捷键【转载合集】
查看>>
Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound
查看>>
[C++] string与int, float, double相互转换
查看>>
ubuntu14.04安装chrome
查看>>
oracle中查询含字母的数据[正则表达式]
查看>>
1002. 写这个号码 (20)(数学啊 ZJU_PAT)
查看>>
【LeetCode】224. Basic Calculator
查看>>
Keil V4.72升级到V5.1X之后
查看>>
Google CFO 辞职信
查看>>
POJ2771_Guardian of Decency(二分图/最大独立集=N-最大匹配)
查看>>
Scala深入浅出实战经典之 List伴生对象操作方法代码实战.
查看>>
php 批量处理post数据
查看>>
RESTful架构详解(转)
查看>>
xcode 在哪里新建category、protocol等文件
查看>>
flash flex 程序出现错误 Error #2032
查看>>
【数据库】主键、外键、索引
查看>>