4
發送推送消息
我已經實現推送通知瀏覽器,並在當我需要發送推送消息給GCM的地步,我用下面的PHP函數:如何使用PHP捲曲在Firefox
function send_push_message($subscription_ids){
// Set GCM endpoint
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $subscription_ids,
);
$headers = array(
'Authorization: key=API_KEY',
'Content-Type: application/json'
);
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Push msg send failed in curl: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
}
(我已經存儲了以前的訂閱)
我認爲我可以做這樣的事情的Firefox,使用這個網址:https://updates.push.services.mozilla.com/push
但我不知道我必須做的。
我需要用Mozilla註冊我的網站才能做到這一點,就像在谷歌?
請幫忙!
您確定它適用於Firefox嗎?我做了同樣的事情,但沒有奏效。當您發送請求時,您從Mozilla服務器獲得的響應格式是什麼? –
是的,現在正在我的應用程序中工作。當我通過CURL(curl -X PUT https://updates.push.services.mozilla.com/push/-browser-endpoint-)測試mozilla服務器並且一切正常時,服務器響應是空的。 –
@WilderBatistaGonzález,在Mozilla中我無法發送推送通知,你能幫我嗎? –