|
@@ -39,44 +39,8 @@ class Qc extends Base {
|
|
|
|
|
|
public function index()
|
|
|
{
|
|
|
- $user_id = 3333 ;
|
|
|
- $alert ='aaa';
|
|
|
- if(empty($user_id)) return false;
|
|
|
- $appKey = '02a7faefd91c8a6a446a6a14';
|
|
|
- $masterSecret = 'ba2e100db997024d9b6e5d35';
|
|
|
- $client = new Client($appKey, $masterSecret,null);
|
|
|
- $push_payload = $client->push()
|
|
|
- ->setPlatform(array('ios', 'android'))
|
|
|
- ->addAlias(strval($user_id))
|
|
|
- //->addAllAudience()
|
|
|
- ->iosNotification($alert, array(
|
|
|
- 'badge' => '+1',
|
|
|
- 'content-available' => true,
|
|
|
- 'mutable-content' => true,
|
|
|
- 'category' => 'jiguang',
|
|
|
- 'extras' => array(
|
|
|
- 'key' => 'value',
|
|
|
- 'jiguang'
|
|
|
- ),
|
|
|
- ))->androidNotification($alert, array(
|
|
|
- 'title' => '消息通知',
|
|
|
- // 'builder_id' => 2,
|
|
|
- 'extras' => array(
|
|
|
- 'key' => 'value',
|
|
|
- 'jiguang'
|
|
|
- ),
|
|
|
- ))->options(array(
|
|
|
- 'apns_production' => True,
|
|
|
- ));
|
|
|
- try {
|
|
|
- $response = $push_payload->send();
|
|
|
- return $response;
|
|
|
- } catch (\JPush\Exceptions\APIConnectionException $e) {
|
|
|
- return $e;
|
|
|
- } catch (\JPush\Exceptions\APIRequestException $e) {
|
|
|
- return $e;
|
|
|
- }
|
|
|
-
|
|
|
+ $res = WeChatPort::getAccessToken();
|
|
|
+ var_dump($res);
|
|
|
}
|
|
|
|
|
|
|