问题标签 [oidc-client]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
10 浏览

identityserver4 - 身份服务器 4 AuthorizationContext.PromptModes 为空

我正在使用oidc-client库通过我们自己的Identity Server 4进行授权。它工作正常,我需要扩展登录功能。我想使用 OIDC 参数“提示”。该参数被正确发送到连接/授权端点。当调用 Login-Method 时,我试图通过调用来获取 AuthorizationContext

_interaction 是 IIdentityServerInteractionService 的一个实例。PromptModes 始终为空。这是我尝试访问它们的正确方式吗?

谢谢

0 投票
1 回答
25 浏览

android - 用我自己的键值对编码我的访问令牌 (JWT) - Android

我正在使用第三方身份提供商(Ping Identity)。我已经在我的 OpenID 连接客户端库 ( https://github.com/openid/AppAuth-Android ) 中配置了 client_id、redirect_uri 和 discovery_uri。

我能够成功登录并access_token获得refresh_token. 我正在尝试在access_token. 但是要编码我需要私钥。

问题

我想知道是否有一个 API 可以在库的帮助下调用,该库将通过调用身份提供者为我编码它。

提前致谢 :)