jpush / jpush
JPush API PHP Client
Installs: 777 172
Dependents: 51
Suggesters: 0
Security: 0
Stars: 522
Watchers: 44
Forks: 174
Open Issues: 8
Requires
- php: >=5.3.3
- ext-curl: *
Requires (Dev)
- dev-master
- v3.x-dev
- v3.7.0
- v3.6.8
- v3.6.7
- v3.6.6
- v3.6.5
- v3.6.4
- v3.6.3
- v3.6.2
- v3.6.1
- v3.6.0
- v3.5.37
- v3.5.36
- v3.5.35
- v3.5.34
- v3.5.33
- v3.5.32
- v3.5.31
- v3.5.30
- v3.5.29
- v3.5.28
- v3.5.27
- v3.5.26
- v3.5.25
- v3.5.24
- v3.5.23
- v3.5.22
- v3.5.21
- v3.5.20
- v3.5.19
- v3.5.18
- v3.5.17
- v3.5.16
- v3.5.15
- v3.5.14
- v3.5.13
- v3.5.12
- v3.5.11
- v3.5.10
- v3.5.9
- v3.5.8
- v3.5.7
- v3.5.6
- v3.5.5
- v3.5.4
- v3.5.3
- v3.5.2
- v3.5.1
- v3.5.0
- v3.4.4
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.9
- v3.3.8
- v3.3.7
- v3.3.6
- v3.3.5
- v3.3.4
- v3.3.3
- v3.3.2
- v3.3.1
- v3.3.0
- v3.2.5
- v3.2.4
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- dev-feature/20220217_unbindDeviceAndAlias
- dev-feature/20190817_upgrade
- dev-dev
This package is auto-updated.
Last update: 2024-11-18 03:58:38 UTC
README
这是 JPush REST API 的 PHP 版本封装开发包,是由极光推送官方提供的,一般支持最新的 API 功能。
对应的 REST API 文档: https://docs.jiguang.cn/jpush/server/push/server_overview/
支持的 PHP 版本: 5.3.3 ~ 5.6.x, 7.x
若需要兼容 PHP 5.3.3 以下版本,可以使用 v3 分支的代码。 因为运行 Composer 需要 PHP 5.3.2+ 以上版本,所以其不提供 Composer 支持, 也可以点击链接下载 v3.4.x 版本源码。
Installation
使用 Composer 安装
- 执行
$ php composer.phar install
或$ composer install
进行安装。
直接下载源码安装
直接下载源代码也是一种安装 SDK 的方法,不过因为有版本更新的维护问题,所以这种安装方式十分不推荐,但由于种种原因导致无法使用 Composer,所以我们也提供了这种情况下的备选方案。
- 下载源代码包,解压到项目中
- 在项目中引入 autoload:
require 'path_to_sdk/autoload.php';
Usage
初始化
use JPush\Client as JPush; ... ... $client = new JPush($app_key, $master_secret); ...
OR
$client = new \JPush\Client($app_key, $master_secret);
简单推送
$client->push() ->setPlatform('all') ->addAllAudience() ->setNotificationAlert('Hello, JPush') ->send();
异常处理
$pusher = $client->push(); $pusher->setPlatform('all'); $pusher->addAllAudience(); $pusher->setNotificationAlert('Hello, JPush'); try { $pusher->send(); } catch (\JPush\Exceptions\JPushException $e) { // try something else here print $e; }
Examples
注意: 这只是使用样例, 不应该直接用于实际环境中!!
在下载的中的 examples 文件夹有简单示例代码, 开发者可以参考其中的样例快速了解该库的使用方法。
简单使用方法
先填写对应的appKey和masterSecret,可以额外设定Registration_id。
若要运行 push_example.php 中的示例代码:
# 假定当前目录为 JPush 源码所在的根目录
$ php examples/push_example.php
同时也可编辑相关的示例文件,更改参数查看执行效果
Testing
# 编辑 tests/bootstrap.php 文件,填入必须的变量值 # OR 设置相应的环境变量 # 运行全部测试用例 $ composer tests # 运行某一具体测试用例 $ composer tests/JPush/xxTest.php
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/jpush/jpush-api-php-client.
License
The library is available as open source under the terms of the MIT License.