Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.48 KB

README.md

File metadata and controls

29 lines (19 loc) · 1.48 KB

Notification Hubs REST wrapper for PHP

Build Status Build Status Code Rating

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.