Questions tagged [identityserver4-extension-grants]

4 questions
1
vote
0 answers

IdentityServer Refresh Extension Grant

I have implemented an extension grant in my Identity Server instance. The purpose of this is for a mobile app to switch contexts between an authenticated user and a public kiosk type device. When the user enters this mode, I acquire a new token and…
Nate
  • 61
  • 13
1
vote
1 answer

Set custom headers to angular-auth-oidc-client token/endsession calls

I know you can add custom parameters to the authorize call as: const parameters: any = { resource: "ABCD" }; this.oidcSecurity.setCustomRequestParameters(parameters); How to add custom request headers? I am using response_type: 'code'. Nothing…
0
votes
0 answers

IdentityServer4 : How can we call a specific ResourceOwnerPasswordValidator from EndpointHandler?

We have a requirement where we need to create a custom endpoint(other than connect/token) using which we can generate the token for password GrantType. I did create a new endpoint by implementing IEndpointHandler but how do I call a…
0
votes
1 answer

Identity Server 4 Extension Grant without a Subject

I created a delegation extension grant the way they did in the docs. (https://identityserver4.readthedocs.io/en/latest/topics/extension_grants.html) In the example, they get the user's identity from the claims and return the grant validation result…