腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(114)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
在
angular-oauth2-oidc
中禁用TLS
我在我的项目中使用了
angular-oauth2-oidc
。Openid (身份)提供程序使用自签名证书。身份提供者不在我们的控制之下。但我没有看到在
angular-oauth2-oidc
中禁用TLS的任何配置 在这种情况下,解决方案是什么?
浏览 42
提问于2021-04-06
得票数 0
回答已采纳
1
回答
angular-oauth2-oidc
中是否有静默注销选项?
我在我的ionic 4应用程序中使用
angular-oauth2-oidc
,我想知道是否有一种方法可以实现静默注销,因为我在
angular-oauth2-oidc
文档中找不到它。
浏览 9
提问于2021-07-20
得票数 1
1
回答
angular-oauth2-oidc
tryLogin()未按预期工作
我在我的angular 8项目中使用8.0.4的发布版本和授权码流: 下面是我拥有的代码 this.oauthService.configure(authConfig); this.oauthService .then(() => this.oauthService.tryLogin()) ---> [1] .then(() =&
浏览 22
提问于2020-07-08
得票数 2
1
回答
POST中的
Angular-oauth2-oidc
loadDiscoveryDocument
我想使用loadDiscoveryDocument获得不带Login用户名和密码的令牌。但是通过使用loadDiscoveryDocument,它在GET方法中调用端点,而不是在HTTP POST Method中调用端点 我不知道如何为loadDiscoveryDocument设置REQUEST METHOD POST。 请帮帮忙。
浏览 19
提问于2021-09-07
得票数 0
1
回答
angular-oauth2-oidc
未设置access_token
我遵循了
angular-oauth2-oidc
库的入门指南,但它唯一存储的是nonce值,access_token不会出现在任何地方。 这是我对AuthConfig的配置。
浏览 1
修改于2018-05-04
得票数 5
1
回答
使用
angular-oauth2-oidc
登录后未生成令牌
我正在尝试使用OAuth2库(
angular-oauth2-oidc
)进行aws cognito的身份验证。authConfiguration.clearHashAfterLogin = this.configService.config['clearHashAfterLogin']; // https://github.com/manfredsteyer/
angular-oauth2
浏览 42
修改于2021-03-25
得票数 0
1
回答
登录后,使用
angular-oauth2-oidc
时,hasValidAccessToken始终为true
我已经用Angular 12.2实现了angular-oauth-oidc (版本12.1.0)。我使用Keycloak作为SSO登录没有问题,但我在库中有一个奇怪的行为。我的配置文件如下: // Url of the Identity Provider issuer: 'http://localhost:8080/auth/
浏览 4
修改于2021-11-20
得票数 1
2
回答
带
angular-oauth2-oidc
的Angular中PKCE授权码流
我想在我的Angular SPA中使用PKCE的代码流,为了方便起见,我使用了这个库:
angular-oauth2-oidc
如果您单击该链接,它会显示您将在此配置中使用PKCE的代码流: let authConfig
浏览 67
提问于2021-02-08
得票数 0
回答已采纳
1
回答
npm
angular-oauth2-oidc
内标识已过期
? 在我的应用程序中,我得到了“令牌已过期”的问题,请帮助我如何订阅令牌过期方法和注销应用程序或否则增加过期时间。请找到下面的错误截图供您参考。提前谢谢你。
浏览 41
提问于2021-02-03
得票数 0
2
回答
angular-oauth2-oidc
内标识在登录后始终无效
我正在尝试遵循documentation 上的指南。authCodeFlowConfig: AuthConfig = { redirectUri: window.location.origin + '/home', responseType: 'code', scope: 'openid profile email offline_acces
浏览 55
修改于2020-05-10
得票数 0
回答已采纳
2
回答
返回带有Angular 6、
angular-oauth2-oidc
和IdentityServer 3的URL
我将location.href保存到"ngOnInit“上的会话存储中,并在收到来自
angular-oauth2-oidc
的事件"token_received”后重定向到这个位置。
浏览 9
提问于2018-12-06
得票数 1
1
回答
在使用
angular-oauth2-oidc
的onTokenReceived中,NavigateByUrl不起作用
我使用的是
angular-oauth2-oidc
包,我使用的是隐式流,(目前)我不能迁移到代码流。 我想导航到原来的网址时,流是结束,我有使用preserving state的文件建议。
浏览 28
提问于2020-04-03
得票数 0
1
回答
有没有办法在"
angular-oauth2-oidc
“包中设置自定义的持有者访问令牌?
在我的客户端中获取这个持有者访问令牌后,我需要以某种方式将它添加到"
angular-oauth2-oidc
“服务中。我希望在"
angular-oauth2-oidc
“中的某个地方有一个setAccessToken函数可以使用。
浏览 18
提问于2019-06-27
得票数 2
回答已采纳
1
回答
使用angular- OAuth2 -oidc和单点登录的OAuth2
我已经完成了以下文档中的所有步骤:https://manfredsteyer.github.io/
angular-oauth2-oidc
/ 我已经设法让远程html登录页面返回,但angular应用程序正在大惊小怪这是我的app.component.ts import { Component, OnInit } from '@angular/core';import
浏览 25
修改于2019-03-20
得票数 3
4
回答
将本地库链接到Angular 5项目中
我已经在我的本地机器上签出了这个库:然后进入我的项目目录并执行库文件夹出现在我的node_modules文件夹中,但我无法使用它,因为当我启动应用程序ng serve时,它会显示:我是这样导入的:我尝
浏览 3
修改于2018-01-19
得票数 4
2
回答
如何配置OAuth代码流清除发现
这就是我的代码现在的样子:import { AuthConfig } from '
angular-oauth2-oidc
'; import {OAuthService} from '
angular-oauth2-oidc
'; selector: 'app-root'login.component.ts import {Com
浏览 10
提问于2022-02-09
得票数 0
回答已采纳
1
回答
Angular应用使用PKCE登录到cognito,然后调用我的API
我有一个现有的angular应用程序,它使用
angular-oauth2-oidc
连接到本地托管的身份服务器。我已经剥离了
angular-oauth2-oidc
组件,并实现了到AWS Cognito的连接(使用Amplify)以允许用户登录。AWS用户池中的应用程序客户端设置已设置为授权码授予。
浏览 0
提问于2020-08-14
得票数 2
1
回答
如何使用spring boot将angular front与oauth2身份验证绑定
source.registerCorsConfiguration("/**", configuration); } export const authConfig: AuthConfigimport { Component, OnInit } f
浏览 43
提问于2019-06-21
得票数 2
1
回答
角OAuth2-oidc CORS ADFS
我使用
angular-oauth2-oidc
库连接到ADFS,但是我得到了以下错误:我使用以下代码: config.issuer = 'https
浏览 7
修改于2020-01-07
得票数 4
1
回答
angular应用程序中的OAuth令牌刷新
我使用的是
angular-oauth2-oidc
包和IdentityServer3。我在我的web应用中使用了
angular-oauth2-oidc
包中的自动刷新选项。
浏览 0
修改于2018-05-22
得票数 2
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
点击加载更多
领券