jildertmiedema / windows-phone-push
Windows Phone Push
Installs: 9 072
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- ext-curl: *
This package is auto-updated.
Last update: 2021-06-11 13:37:05 UTC
README
Windows Phone Push
This code is based on the code of Rudy HUYN.
example
<?php require_once 'vendor/autoload.php'; try { $uri = "{the uri}"; $notifier = new JildertMiedema\WindowsPhone\WindowsPhonePushNotification(); $result = $notifier->pushToast($uri, "Test app", "Test message"); var_dump($result); } catch (Exception $e) { var_dump($e) }