openpp/notificationhubs-rest-php

Microsoft Azure Notification Hub library for PHP

0.5.0 2015-11-05 03:32 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:18:38 UTC


README

Build Status StyleCI 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.