mobagel / notificationhubs-rest-php
Microsoft Azure Notification Hub library for PHP, fork from webware.Inc project
0.5.1
2016-06-06 12:27 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: ~4.8.0
This package is not auto-updated.
Last update: 2025-01-04 20:25:58 UTC
README
This is a implementation of a REST wrapper using the REST APIs of Notification Hubs from a PHP back-end.
How to use the code above
Initialize your Notification Hubs client (substitute the connection string and hub name as instructed in the Get started tutorial):
$hub = new NotificationHub("connection string", "hubname");
Then add the send code depending on your target mobile platform.
iOS
$factory = new NotificationFactory();
$notification = $factory->createNotification("apple", "Hello from PHP!");
$hub->sendNotification($notification);
Android
$factory = new NotificationFactory();
$notification = $factory->createNotification("gcm", "Hello from PHP!");
$hub->sendNotification($notification);
Notes
This code is provided as-is with no guarantees.