【问题标题】:How to send Chrome push notification to mulitple device如何将 Chrome 推送通知发送到多个设备
【发布时间】:2016-05-18 07:59:40
【问题描述】:
【问题讨论】:
标签:
php
push-notification
google-cloud-messaging
chrome-gcm
【解决方案1】:
试试这个:-
<?php
$data = ["registration_ids" => ["regid1","regid2",...,"regidn"]];
$dataString = json_encode($data);
$curl = curl_init('https://android.googleapis.com/gcm/send');
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_POSTFIELDS, $dataString);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, [
'Content-Type: application/json',
'Authorization: key=YOUR_API_KEY'
]);
$result = curl_exec($curl);
print_r($result);
?>