2 unstable releases

0.2.0 Jul 20, 2024
0.1.0 Jun 12, 2024

#7 in #fcm

Download history 7/week @ 2024-11-17 19/week @ 2024-11-24 26/week @ 2024-12-01 43/week @ 2024-12-08 82/week @ 2024-12-15 14/week @ 2024-12-22 4/week @ 2024-12-29 59/week @ 2025-01-05 29/week @ 2025-01-12 30/week @ 2025-01-19 25/week @ 2025-01-26 119/week @ 2025-02-02 59/week @ 2025-02-09 56/week @ 2025-02-16 47/week @ 2025-02-23 46/week @ 2025-03-02

240 downloads per month

MIT license

13KB
138 lines

Firebase Cloud Messaging API v1 Rust Crate

This Rust crate provides a convenient way to send notifications using Firebase Cloud Messaging (FCM) API v1. It leverages async/await for asynchronous operations and supports loading service account credentials from a JSON file.

Installation

Add this crate to your Cargo.toml:

[dependencies]
fcm-rs = "0.2.0"

Usage

Below is an example of how to use this crate to send a notification:

use fcm_rs::{ client::FcmClient, models::{ Message, Notification } };

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let service_account_path = "path/to/service_account";

    // Create a new FCM client
    let client = FcmClient::new(service_account_path).await?;

    // Define the message with the target device token and notification details
    let message = Message {
        token: Some("your_device_token".to_string()),
        notification: Some(Notification {
            title: Some("Hello from Rust!".to_string()),
            body: Some("This is a test notification.".to_string()),
        }),
        data: None,
    };

    // Send the message and handle the response
    let response = client.send(message).await?;
    println!("FCM response: {:?}", response);

    Ok(())
}

Contribution

Contributions are welcome! Feel free to submit issues or pull requests.

Contact

For any queries or suggestions, please open an issue on the GitHub repository.

Dependencies

~13–25MB
~371K SLoC