An easy to use OAuth2 client for rust
The crate automatically starts a webserver in a background thread and makes the authorization flow a simple matter of calling ezoauth::authenticate
with your OAuthConfig
.
```rust let config = ezoauth::OAuthConfig { authurl: "https://discord.com/api/oauth2/authorize", tokenurl: "https://discord.com/api/oauth2/token", redirecturl: "http://localhost:8000", clientid: "...", clientsecret: "...", scopes: vec!["identify"], }; let (rx, authurl) = ezoauth::authenticate(config, "localhost:8000")?;
println!("Browse to {}", auth_url);
let token = rx.recv().unwrap()?; ```
MIT © Jakob Hellermann