gcm 0.1.1

An API to talk to GCM (Google Cloud Messaging) in Rust
docs.rs failed to build gcm-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: gcm-0.2.0

gcm

Usage

Add this to Cargo.toml:

[dependencies]
gcm = "0.1.0"

then add this to your crate root:

extern crate gcm;

Examples:

Here is an example to send out a GCM Message with some custom data:

use gcm::message::Message;
use std::collections::HashMap;

let mut map = HashMap::new();
map.insert("message", "Howdy!");

let result = Message::new("<registration id>")
    .data(map)
    .send("<GCM API Key>");

To send a message using GCM Notifications, we first build the notification:

use gcm::message::Message;
use gcm::notification::NotificationBuilder;

let notification = NotificationBuilder::new("Hey!")
    .body("Do you want to catch up later?")
    .finalize();

And then set it in the message, before sending it:

let message = Message::new("<registration id>")
    .notification(notification)
    .send("<GCM API Key>");