The Expo Push Notification client provides a way for you to send push notifications to users of your mobile app using the Expo push notification services. For more details on the Expo push notification service, go [here] (https://docs.expo.io/versions/latest/guides/push-notifications)
``` extern crate exposerversdk; use exposerversdk::*; use std::str::FromStr;
let token = PushToken::from_str("ExpoPushToken[my-token]").unwrap(); let mut msg = PushMessage::new(token).body("test notification");
let pushnotifier = PushNotifier::new().gzippolicy(GzipPolicy::Always); let result = pushnotifier.sendpush_notification(&msg);
if let Ok(result) = result { println!("Push Notification Response: \n \n {:#?}", result); } ```
```
expo-server --body="test notification" ExpoPushToken[my-token] ```
Receives the response: ``` Push Notification Response:
PushReceipt { status: "error", message: Some( "\"ExpoPushToken[my-token]\" is not a registered push notification recipient" ), details: Some( Object( { "error": String( "DeviceNotRegistered" ) } ) ) } ```