A Rust crate for sending push notifications to iOS devices via the APNS http/2 API.
Cargo.toml:
toml
[dependencies]
apns2 = "*"
failure = "*"
```rust extern crate apns2; extern crate failure;
use failure::Error;
fn send(devicetoken: String, alert: String) -> Result<(), Error> { let apns = apns2::Apns::withcertificate( "certs/apnscert.p12", // Path to p12 certificate + key db file. Some("passphrase".tostring()), // Passphraase used for the p12 file. )?; let notification = NotificationBuilder::new(topic, token) .title("title") .body("body") .sound("somesound.mp3") .badge(5) .build(); apns.send(n)?;
Ok(())
} ```
Sadly, no native http/2 Rust libraries are mature enough to be used, so this crate currently uses cURL via rust-curl. Once the ecosystem catches up, a native Rust solution will be used.
This library is dual-licensed under Apache and MIT.
Check the license files in this repo for details.