naski/urbanairship-api
最新稳定版本:0.4
Composer 安装命令:
composer require naski/urbanairship-api
包简介
Urban Airship PHP Library
README 文档
README
PHP library for use with the Urban Airship API for sending push notifications. Supports iOS, Android, and Blackberry.
Adding in this not official version : Multi push in single HTTP Call
Requirements
PHP >= 7.0
Dependencies
- Composer
- Httpful
- Monolog
Development Dependencies
PHPUnit
Example Usage
<?php require_once 'vendor/autoload.php'; use UrbanAirship\Airship; use UrbanAirship\AirshipException; use UrbanAirship\UALog; use UrbanAirship\Push as P; use UrbanAirship\Push\MultiPushRequest; use Monolog\Logger; use Monolog\Handler\StreamHandler; UALog::setLogHandlers(array(new StreamHandler("php://stdout", Logger::DEBUG))); $airship = new Airship("<app key>", "<master secret>"); // Single push try { $response = $airship->push() ->setAudience(P\all) ->setNotification(P\notification("Hello from php")) ->setDeviceTypes(P\all) ->send(); } catch (AirshipException $e) { print_r($e); } // Multi push in single call try { $multiPushRequest = new MultiPushRequest($airship); $multiPushRequest->addPushRequest( $airship->push() ->setAudience(P\all) ->setNotification(P\notification("Hello from php")) ->setDeviceTypes(P\all) ); $response = $multiPushRequest->send(); } catch (AirshipException $e) { print_r($e); }
Resources
统计信息
- 总下载量: 1.54k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache
- 更新时间: 2016-11-02