123456789101112131415161718192021222324 |
- <?php
- // 这只是使用样例,不应该直接用于实际生产环境中 !!
- require 'config.php';
- use JPush\Client as JPush;
- // 简单推送示例
- // 这只是使用样例,不应该直接用于实际生产环境中 !!
- $client = new JPush($app_key, $master_secret, null, null, 'BJ');
- $push_payload = $client->push()
- ->setPlatform('all')
- ->addAllAudience()
- ->setNotificationAlert('Hi, JPush');
- try {
- $response = $push_payload->send();
- print_r($response);
- } catch (\JPush\Exceptions\APIConnectionException $e) {
- // try something here
- print $e;
- } catch (\JPush\Exceptions\APIRequestException $e) {
- // try something here
- print $e;
- }
|