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

This package is not auto-updated.

Last update: 2024-04-27 16:42:22 UTC


README

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.