mobagel/notificationhubs-rest-php
Composer 安装命令:
composer require mobagel/notificationhubs-rest-php
包简介
Microsoft Azure Notification Hub library for PHP, fork from webware.Inc project
README 文档
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.
统计信息
- 总下载量: 111
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-06-06