gonzalo123/androidpusher

用于向Android设备发送推送通知的工具

dev-master / 1.0.x-dev 2015-12-27 13:50 UTC

This package is not auto-updated.

Last update: 2024-09-14 13:58:24 UTC


README

一个简单的库,用于向Android设备发送推送通知

// https://code.google.com/apis/console/
$apiKey = "myApiKey";
$regId = "device reg ID";

$pusher = new AndroidPusher\Pusher($apiKey);
$pusher->notify($regId, "Hola");

print_r($pusher->getOutputAsArray());