<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
push-notification / push-notification-php-library example snippets
use PushNotification\Service\PushService;
$data = array(
'device' => array(
'name' => '', // Android or AppleIOS
'token' => '', // device token | user token , if you want to send to apple device you have to fill this
'id' => 'unique id here'),
'message' => array(
'action' => 'test',
'title' => 'this is test title',
'targets' => array(''), // if you want to use Fcm you can inclue array of targets
'body' => 'this is body',
'type' => '', // AndroidMessages or IOSMessages
'data' => array('type' => 'testType'))
);
$response = PushService::getInstance()->send($data);
use PushNotification\Service\PushService;
$data = array(
'device' => array(
'name' => 'Android',
'token' => '',
'id' => 'some id here '),
'message' => array(
'action' => 'test',
'title' => 'this is test title',
'targets' => array('token1', 'token2', 'token3'),
'body' => 'this is body',
'type' => 'AndroidMessages',
'data' => array('type' => 'testType'))
);
$response = PushService::getInstance()->send($data);
print_r($response);