腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(2785)
视频
沙龙
1
回答
identityserver4
RequestResourceOwnerPasswordAsync
unauthorized_client
、
我不知道为什么我会使用tokenClient.
RequestResourceOwnerPasswordAsync
:获得
unauthorized_client
?
浏览 67
提问于2019-03-13
得票数 0
1
回答
无法使Microsoft.Owin与Identity Server 4连接
、
、
我有一个MVC5 ASP.Net web应用程序,我想通过
IdentityServer4
使用OAuth2 OpenId连接。项目中的启动文件是;在Indentity Server4代码中,启动是;它使用我收到此错误:对不起,出现错误:
unauthorized_client
未知客户端或客户端未启用 或者有时我会得到抱歉,有一个错误:
unauthor
浏览 7
提问于2018-12-17
得票数 1
回答已采纳
1
回答
如何通过“密码”id_token从
identityserver4
获得access_token和grant_type?
、
、
我正在尝试使用
identityserver4
构建身份提供者应用程序;目前,我使用“资源所有者密码凭据”流,它从令牌端点返回access_token和refresh_token。TokenClient(<TokenEndpoint>, <ClientId>, <ClientSecret>); var tokenResponse = await tokenClient.
RequestResourceOwnerPasswordAsync
浏览 5
提问于2017-01-02
得票数 17
1
回答
ResourceOwnerPassword流在.NET核心3.1/IdentityModel 5.1中的应用
、
、
、
我在玩
IdentityServer4
。new TokenClient(disco.TokenEndpoint, "ro.client", "secret"); var tokenResponse = await tokenClient.
RequestResourceOwnerPasswordAsync
浏览 2
提问于2021-06-26
得票数 0
回答已采纳
1
回答
IdentityServer4
with AspNetCore.Identity:使用TokenClient时未调用的自定义SignInManager
、
、
、
我让
IdentityServer4
和AspNetCore.Identity一起工作。在执行TokenClient.
RequestResourceOwnerPasswordAsync
,时,调用SignInManager中方法中的符号的none。
浏览 0
提问于2019-02-23
得票数 0
回答已采纳
2
回答
IdentityServer4
unsupported_grant_type误差
、
我一直试图获得
IdentityServer4
最简单的示例,以便在纯代码中请求访问。我可以在使用客户端请求时获得访问令牌,但在进行用户登录时不能获得访问令牌。TokenClient(disco.TokenEndpoint, "ro.client", "secret"); var tokenResponse = await tokenClient.
RequestResourceOwnerPasswordAsync
浏览 5
提问于2017-09-24
得票数 2
回答已采纳
1
回答
IdentityServer4
如何创建标识符?
、
、
、
、
我遵循几个教程和
IdentityServer4
文档及其术语:,但我不知道要为用户获取一个id令牌的端点。TokenClient(discoResponse.TokenEndpoint, "mvc", "secret"); var tokenResponse = tokenClient.
RequestResourceOwnerPasswordAsync
浏览 0
提问于2018-04-25
得票数 3
回答已采纳
1
回答
基于身份server4的asp.net核心登录控制器的API集成测试
、
、
我在使用
IdentityServer4
测试登录控制器时遇到了问题。TokenClient(tokenUrl,"ClientId","ClientPassword"); var response
浏览 2
提问于2018-01-08
得票数 3
回答已采纳
1
回答
IdentityServer4
-返回
unauthorized_client
的RequestClientCredentialsTokenAsync
、
使用
IdentityServer4
,在更新我的.net核心3的代码后,我得到了一个
unauthorized_client
错误。return tokenResponse; } tokenResponse.IsError返回true (因此该方法返回null),并将Error设置为"
unauthorized_client
浏览 292
提问于2019-12-20
得票数 1
回答已采纳
2
回答
无法使用SSL从Windows应用程序连接到
IdentityServer4
、
它能够在没有SSL的情况下向
Identityserver4
进行身份验证,但不能使用SSL进行身份验证。connect/token", Constants.ClientId, Constants.ClientSecret); var tokenResponseTask = tokenClient.
RequestResourceOwnerPasswordAsync
浏览 2
提问于2018-07-20
得票数 2
1
回答
标识服务器4中null中的刷新令牌
、
、
通过使用
RequestResourceOwnerPasswordAsync
方法,我可以获得accessToken,但是刷新令牌为null。disco.TokenEndpoint, "ro.client", "secret"); var tokenResponse = await tokenClient.
RequestResourceOwnerPasswordAsync
浏览 1
提问于2018-02-20
得票数 6
回答已采纳
1
回答
IdentityServer4
示例代码给出
unauthorized_client
错误
、
、
、
但是,当我按原样运行示例时,我得到了这个
unauthorized_client
--未知的客户端或未启用的错误。
浏览 7
提问于2020-12-04
得票数 1
1
回答
IdentityServer4
隐式GrantType抛出
Unauthorized_Client
错误
、
当我运行我的项目并尝试登录以获取访问令牌时,我会在浏览器上或在使用Postman进行测试时得到一个
Unauthorized_Client
错误。我对IdentityServer相当陌生。AllowOfflineAccess = true };我使用ASP.NET标识和EntityFrameworkCore与
IdentityServer4
浏览 7
提问于2018-01-10
得票数 0
1
回答
IdentityServer 4用户信息端点返回禁用状态
、
我刚刚开始使用
identityserver4
,我不明白为什么user-info端点返回禁止状态 var tokenResponse = tokenClient.
RequestResourceOwnerPasswordAsync
浏览 3
提问于2018-01-31
得票数 0
回答已采纳
1
回答
如何对静态扩展方法进行单元测试?
、
、
MobileClient.ClientSecret); await resourceOwnerToken.
RequestResourceOwnerPasswordAsync
(model.Phone, model.Password);
RequestResourceOwnerPasswordAsync
是一个库中的静态扩展方法。public static Task<TokenResponse>
RequestResourceOw
浏览 0
提问于2018-10-23
得票数 1
1
回答
如何在使用ResourceOwnerPassword授予类型时返回用户声明
、
、
、
为此,我们使用了
IdentityServer4
。 var tokenResponse = await tokenClient.
RequestResourceOwnerPasswordAsync
浏览 4
提问于2017-11-09
得票数 0
回答已采纳
2
回答
NetCore 3.1与现有数据库和用户表一起使用
IdentityServer4
、
、
、
到目前为止,我如何使用用户名和用户的密码(
IdentityServer4
table.This )添加用于身份验证的table.This: {; }
IdentityServer4
的配置类: {{ }我尝试使用用户名并从db传递(不是散列,它只是用于测试),但返回总是
浏览 2
提问于2020-08-06
得票数 1
回答已采纳
1
回答
将
IdentityServer4
作为OAuth2服务器添加到Django API
、
、
我将使用
IdentityServer4
作为我的OAuth2服务器来为Django应用程序生成JWT,这样我以后就可以毫无问题地将其他框架添加到我的解决方案中,比如.NET核心。可以使用
IdentityServer4
作为Django的OAuth2服务器吗? 谢谢
浏览 27
提问于2021-11-11
得票数 0
1
回答
用作另一个IdentityServer的外部标识提供程序的IdentityServer未能正确地重定向。
、
、
、
在登录和同意后使用任何标准身份提供者(Google、Facebook)时,它们会重定向到我的主身份服务器,并让它重定向到在其中注册的隐式客户端。如何使用另一个身份服务器作为外部身份提供程序来实现相同的行为?我很难做到以下几点:充当外部IdP的Identity Server被卡在端点上: /connect/authorize/login?client_id=primaryIdentityServer&redirec
浏览 2
提问于2017-01-25
得票数 4
回答已采纳
1
回答
JWT 2-如何使用Asp.Net访问令牌和用户声明
、
、
、
、
我已经在一个Asp.Net Web项目中实现了一个授权服务器,如本中所解释的那样。var client = new TokenClient( "client_id",var token = re
浏览 6
提问于2016-01-25
得票数 2
回答已采纳
点击加载更多
热门
标签
更多标签
云服务器
ICP备案
对象存储
云点播
即时通信 IM
活动推荐
运营活动
广告
关闭
领券