如何使用PHP和GCM服务发送如下图所示的推送通知。
我目前正在向GCM发送以下数据以获取正常推送通知
$message = array(
'title' => 'Example Title',
'subtitle' => 'Example Subtitle',
'message' =>'Example Message',
'tickerText' => 'XYZ',
'vibrate' => '1',
'sound' => '1',
);
到此网址