ez-token 0.1.0

CLI tool for generating OAuth2 access tokens via PKCE and Client Credentials for Microsoft Entra ID and Auth0
Documentation
1
2
3
4
5
6
7
8
//! Local HTTP server for receiving OAuth2 callbacks.
//!
//! This module provides an `axum`-based web server that listens on a local
//! port to capture the authorization code returned by the identity provider
//! during the interactive browser flow.

/// Core server logic and callback handling.
pub mod server;