You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your continued support of this package.
Re #232 I like the idea of dropping the /x/oauth2 pkg and using this package exclusively when interfacing with oidc servers. But as you mentioned, this might be out-of-scope for v3.
What are your thoughts on adding support for additional endpoints:
I figured it might be useful to have these two endpoints, similar to UserInfo which fetches from userinfo_endpoint but instead here we'd inspect/revoke tokens.
Easy enough to implement outside this core (no pun intended ;) package.
In retrospect, keeping this package lean makes sense sense.
p.s. @ericchiang if you need any help or need early users for v3 happy to help.
Thanks for your continued support of this package.
Re #232 I like the idea of dropping the
/x/oauth2
pkg and using this package exclusively when interfacing with oidc servers. But as you mentioned, this might be out-of-scope forv3
.What are your thoughts on adding support for additional endpoints:
revocation_endpoint
rfc7009introspection_endpoint
rfc7662We could add the endpoint URLs to the Provider struct and add 2 new methods:
Revoke(..)
Introspect(..)
I don't think these are mandatory, so calling these methods on empty URLs would return
ErrNotSupported
.Thoughts?
The text was updated successfully, but these errors were encountered: