Expand description
This crate provides a Rust API client for interacting with Google Workspace APIs, The main goal is to provide a unified interface for Google Workspace APIs It’s build on the reqwest crate
The crate includes several examples in the examples/
directory:
axum_calendar_example.rs
: Demonstrates how to set up authentication using axum and make basic API calls. This example requires thecalendar
feature to be enabled. Make sure to add the correct config fields like client_id, client_secret, and redirect_uri to yourConfig
struct.- Run examples with
cargo run --example axum_calendar_example --features calendar