CliOAuth (pronounced "klee-oh-awth") is a utility to assist CLI/desktop application developers with implementing the OAuth 2.0 Authorization Code flow with PKCE.
To learn more about Auth Code w/ PKCE, Auth0 has a good tutorial.
The oauth2
crate provides an excellent OAuth2 client implementation. However, to support the Auth Code with PKCE
flow in a native desktop application, a couple of additional pieces are necessary:
state
parameter)CliOAuth provides these pieces in an asynchronous and extensible way. It is designed to supplement the oauth2::Client
struct, but not interfere with its normal usage.
TODO