1
ブラウザでは、タブが閉じていてもプッシュ通知を送信しようとしていますが、実際には役立たない回答が見つかりませんでした。 タブが閉じている場合にfacebookが通知を送信する方法タブが閉じたときにブラウザのプッシュ通知は機能しません
私はこのコードを書かれている、それはタブでは、ウェブサイトがオープンされていない場合でも、通知を送信するためにGoogleのGCMのプッシュ通知を使用する必要が
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
} else if (Notification.permission === "granted") {
var notification = new Notification("Hi there!");
} else if (Notification.permission !== 'denied') {
Notification.requestPermission(function(permission) {
if (permission === "granted") {
var notification = new Notification("Hi there!");
}
});
}
setTimeout(next, 1000*10);
ありがとうございました。残念ながら私のウェブサイトはhttpsプロトコルではありませんが、私はそれもfirefoxで動作させる必要があります –
次に、https://onesignal.com/のようなサードパーティのサービスを利用することをお勧めしますwebpushまたはhttps://pushcrew.com/。 –