cmd-johnson / deno-oauth2-client

Minimalistic OAuth 2.0 client for Deno.
MIT License
45 stars 9 forks source link

suggestion: support token revocation #30

Open iuioiua opened 1 year ago

iuioiua commented 1 year ago

This would require an OAuth2ClientConfig.tokenRevokeUri?: string (or similar) property.

cmd-johnson commented 1 year ago

(ref. OAuth 2.0 Token Revocation)

I agree that this could make a nice addition to this module. Token revocation isn't part of the grants and is basically its own thing, so it would probably be best to attach this to the OAuth2Client class.