Skip to content

Quick Question: For the OpenID client is there a way to configure the revoke token endpoint? #292

Answered by frankie567
jdclawson asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @jdclawson 👋

One of the benefit of OpenID is automatic discovery of the OAuth2 routes and configuration.

It means that your provider exposes an URL like this one: https://accounts.google.com/.well-known/openid-configuration If you open it, you'll see a result like this:

{
 "issuer": "https://accounts.google.com",
 "authorization_endpoint": "https://accounts.google.com/o/oauth2/v2/auth",
 "device_authorization_endpoint": "https://oauth2.googleapis.com/device/code",
 "token_endpoint": "https://oauth2.googleapis.com/token",
 "userinfo_endpoint": "https://openidconnect.googleapis.com/v1/userinfo",
 "revocation_endpoint": "https://oauth2.googleapis.com/revoke",
 "jwks_uri": "https://www.goo…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@jdclawson
Comment options

Answer selected by jdclawson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #291 on September 30, 2022 06:19.