firebase-client

A firebase HTTP v1 client implementation in Rust using the google_authz library.

Example

There are two ways to send notifications, one using a notification builder:

```Rust

// Get env vars from .env file let credentialsfilepath = std::env::var("CREDENTIALSFILEPATH").unwrap(); let projectid = std::env::var("PROJECTID").unwrap(); let testtoken = std::env::var("TESTTOKEN").unwrap();

// Instantiate our client let https = HttpsConnector::withnativeroots(); let client = hyper::Client::builder().build::<_, Body>(https); let firebaseclient = FirebaseClient::newdefault(client, &credentialsfilepath, &project_id).unwrap();

// Build a notification let mut firebasenotification = NotificationBuilder::new("TESTTITLE", &testtoken) .message("TESTMESSAGE") .data(json!({ "url": "https://firebase.google.com/docs/cloud-messaging/migrate-v1" })) .androidchannelid("channel_urgent") .build();

// Send a notification firebasenotification.sendnotification(firebase_notification).await().unwrap(); ```

And another sending a raw string:

```Rust

// Get env vars from .env file let credentialsfilepath = std::env::var("CREDENTIALSFILEPATH").unwrap(); let projectid = std::env::var("PROJECTID").unwrap(); let testtoken = std::env::var("TESTTOKEN").unwrap();

// Instantiate our client let https = HttpsConnector::withnativeroots(); let client = hyper::Client::builder().build::<_, Body>(https); let mut firebaseclient = FirebaseClient::newdefault(client, &credentialsfilepath, &project_id).unwrap();

// Send notification directly let result = firebaseclient .sendnotificationraw( json!( { "message": { "token": testtoken, "notification": { "title": "TESTTITLE", "body": "TESTMESSAGE" } } } ) .tostring(), ) .await; ```