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…
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…
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…
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…
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…