如何使用GCM使用notification_key?

时间:2014-02-26 13:03:49

标签: java php android google-cloud-messaging

是否有任何GCM客户端和服务器php示例描述了notification_key的使用。因为我的应用程序需要具有多个设备的用户的推送通知。但是找不到任何合适的例子或方法来实现这个http://developer.android.com/google/gcm/notifications.html

谢谢,请帮忙。

1 个答案:

答案 0 :(得分:0)

此PHP库有一个通过通知键发送的选项:

https://github.com/CoreProc/gcm-php

$gcmClient = new GcmClient('your-gcm-api-key-here');
$message = new Message($gcmClient);
$message->setNotificationKey('xxxxxxxxxx');
$message->setData([
    'title' => 'Sample Push Notification',
    'message' => 'This is a test push notification using Google Cloud Messaging'
]);
$message->send()