sns-push-notifications

Crates.iosns-push-notifications
lib.rssns-push-notifications
version0.1.1
sourcesrc
created_at2019-02-09 21:38:44.872207
updated_at2019-02-09 21:42:03.699614
descriptionLibrary for sending iOS and Android push notifications with AWS SNS
homepagehttps://github.com/davidpdrsn/sns-push-notifications
repositoryhttps://github.com/davidpdrsn/sns-push-notifications.git
max_upload_size
id113809
size9,911
David Pedersen (davidpdrsn)

documentation

https://docs.rs/sns-push-notifications

README

A library for sending iOS and Android push notifications with Amazon Simple Notification Servce (SNS).

Example usage

use sns_push_notifications::{Push, Region, SnsClient};

let client = SnsClient::new_checked(Region::EuWest1)?;

let endpoint_arn = client.register_device(
    // not an actual token
    "123coi12j3vi12u3o1k23pb12e0jqpfw79g7w6fyi2o4jg293urf9q7ct9x1oi2h",
    // not an actual platform arn
    "arn:aws:sns:eu-west-1:000000000000:app/APNS/my-rusty-app",
)?;

client.send_push(
    &Push::Alert {
        text: "Hello, World!".to_string(),
        badge: Some(1),
    },
    &endpoint_arn,
)?;


License: MIT

Commit count: 3

cargo fmt