Skip to content

MoBagel/notificationhubs-rest-php

 
 

Repository files navigation

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.

About

Push Notification Library for Microsoft Azure Notification Hub

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%