Questions tagged [angular-auth-oidc-client]

Angular Library for OpenID Connect & OAuth2

Angular Library for OpenID Connect & OAuth2

For more information, see

50 questions
0
votes
2 answers

angular-auth-oidc-client --> silentRenewHeartBeatCheck runs every 3-4 seconds

Is the silentRenewHeartBeatCheck supposed to run every 3-4 seconds? I just want to know if I configured something wrong or not. I don't even know where to look to check for something that would configure this. If it is doing what it is supposed…
Post Impatica
  • 14,999
  • 9
  • 67
  • 78
0
votes
1 answer

Moved my login page, cant login now

I moved my login controls from account/login to the home page and removed the account controller and it's views. It all works fine on my machine (of course) but when I deploy to my test environment I get an error: No webpage was found for the web…
Jonesie
  • 6,997
  • 10
  • 48
  • 66
-1
votes
1 answer

Using IdentityServer4/5 without Angular additional libraries

Background I check options to migrate my service authentication system to identityserver4\5. I have two websites: account.company.com company.com My websites are SPA based on .NET core and Angular. Question I saw few demo projects identityserver4…
-1
votes
1 answer

Is the authorization code with pkce default on authcode grant type implementation?

We are using oidc-client. The Client setting grant type is authorization code. However, I found out that my authorization code uses PKCE. Because I can use it without client secret and and has code_challenge on the uri. I'm looking onto it on how it…
-1
votes
1 answer

How to unit test OidcSecurityService.Auth() with jasmine?

I am using Jasmine for unit testing. And I am using OidcSecurityService. So I made a mock for it, like this: export class OidcSecurityServiceStub{ getToken(){ return 'some_token_eVbnasdQ324'; } } and I have this component: export class…
1 2 3
4