OpenIdConnectConfiguration doesn't have TokenIntrospectionEndpoint
See original GitHub issueOpenIdConnectConfiguration doesn’t have TokenIntrospectionEndpoint property.
It is very useful property in access token introspection scenario.
var response = await client.IntrospectTokenAsync(new TokenIntrospectionRequest {
Address = "https://demo.identityserver.io/connect/introspect", // <- here
ClientId = "id",
ClientSecret = "secret",
Token = accessToken
});
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (6 by maintainers)
Top Results From Across the Web
OpenID Connect Token Introspection
A connected app representing a client app sends a request to the Salesforce token introspection endpoint to validate its access token. The format...
Read more >OpenID Connect & OAuth 2.0 API
An opaque value that can be used to redeem tokens from the token endpoint. code is returned if the response_type includes code ....
Read more >OpenID Connect (OIDC) Bearer token authentication
Bearer token authentication is the process of authorizing HTTP requests based on the existence and validity of a bearer token. The bearer token...
Read more >CWWKS
The request had a client ID that was not the same client ID that created the access token, or the request had an...
Read more >Validate Access Tokens - Okta Developer
This guide on tokens shows you how to verify a token's signature, manage key rotation, and how to use a refresh token to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
My pleasure 😃
@snoward , @kevinchalet coded this up and it should be in our 6.6.0 release coming up within a week.
@kevinchalet thanks!