Firefox推送通知在localhost中工作,但不在我的网站上工作(https://example.com)

时间:2016-10-03 16:59:57

标签: google-chrome firefox push-notification server web-notifications

我正在运行下面哪个在我的localhost中运行完美,但当我从我的网站(https://**.co)运行相同的代码时,通知无效。我没有收到任何消息

以下是我的示例代码

<?php
$url = "https://updates.push.services.mozilla.com/wpush/v1/gAAAAABX8iWjb-FGul8QzsWYkzgjMp8uRhKXaEtf3nr9CCy7lY1gLpkNHGwLUFKPa0iZ_bXND0meKat_BBEiN46EAhjygD9h_q0onLwFZr-AKSJBeSGmzgpk8OUvtDpPCrLZ2ZS_uSyl";

$ch = curl_init();  

curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('ttl: 60'));
curl_setopt($ch, CURLOPT_POST, true);

$output=curl_exec($ch);
curl_close($ch);
print_r($output);

我有一个单独的chrome代码,对于chrome浏览器来说效果非常好。 我从这个链接中获取了chrome代码 How use php curl to send push message in Firefox

但对于Firefox,我无法从我的网站发送。 任何有关如何解决这个问题的见解将不胜感激。谢谢

0 个答案:

没有答案