如何在推送通知(Gcm)php中显示图像

时间:2015-09-22 05:27:32

标签: php push-notification google-cloud-messaging

如何使用PHP和GCM服务发送如下图所示的推送通知。

我目前正在向GCM发送以下数据以获取正常推送通知

$message = array(
    'title' => 'Example Title',
    'subtitle' => 'Example Subtitle',
    'message' =>'Example Message',
    'tickerText' => 'XYZ',
    'vibrate' => '1',
    'sound' => '1',
);

到此网址

https://android.googleapis.com/gcm/send

Flipkart Image Push Notification

1 个答案:

答案 0 :(得分:0)

一种选择是发送通知消息,请注意图标字段here

另一种选择是将url发送到下游消息中的图像,然后在移动应用程序中检索图像,然后使用该图像构建通知。