osynic_osuapi 0.1.10

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
// Create new PM
use osynic_osuapi::error::Result;
use osynic_osuapi::v2::client::request::client::OsynicOsuApiV2Client;
use osynic_osuapi::v2::interface::chat::IChat;
use osynic_osuapi::v2::model::oauth::structs::o_token::OToken;

#[tokio::main]
async fn main() -> Result<()> {
    dotenvy::dotenv().ok();
    let access_token = std::env::var("ACCESS_TOKEN").expect(
        "Please set the ACCESS_TOKEN environment variable to a valid osu! API v2 access token",
    );
    let client = OsynicOsuApiV2Client::new(OToken {
        access_token,
        refresh_token: None,
        expires_in: 86400,
        token_type: "Bearer".to_string(),
    });
    // 给SisypheOVO(35628968)发私信,内容为"Ciallo~(∠・ω< )⌒★"
    let pm = client
        .chat
        .create_new_pm(35628968, "Ciallo~(∠・ω< )⌒★".to_string(), false, None)
        .await?;
    println!("{:?}", pm);
    Ok(())
}

/*
ReqwestChat create_new_pm
Error: NetworkError: Response {
    url: "https://osu.ppy.sh/api/v2/chat/new",
    status: 403,
    headers: {
        "date": "Mon, 12 May 2025 14:19:38 GMT",
        "content-type": "application/json",
        "transfer-encoding": "chunked",
        "connection": "keep-alive",
        "cache-control": "no-cache, private",
        "x-ratelimit-limit": "1200",
        "x-ratelimit-remaining": "1199",
        "strict-transport-security": "max-age=31536000; includeSubDomains; preload",
        "vary": "accept-encoding",
        "cf-cache-status": "DYNAMIC",
        "x-content-type-options": "nosniff",
        "server": "cloudflare",
        "cf-ray": "93ea8d5f4aba0470-HKG"
    }
}
*/