-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Labels
Description
'gcm' => [ |
I'd like to pushing to my Android FCM client
example use [pusher/pusher-php-server]
// Install the server library with:
// composer require pusher/pusher-php-server
require __DIR__ . '/vendor/autoload.php';
$pusher = new Pusher\Pusher('APP_KEY', 'APP_SECRET', 'APP_ID', array('cluster' => 'APP_CLUSTER'));
$pusher->notify(
array("donuts"),
array(
'fcm' => array(
'notification' => array(
'title' => 'hello world',
'icon' => 'androidlogo'
),
),
)
);
carview-hashimoto