firebase- laravel: обмен сообщениями: мы не можем зарегистрировать работника службы по умолчанию - PullRequest
0 голосов
/ 29 марта 2020

Мне нужно внедрить систему уведомлений с этим кодом:

firebase.initializeApp(firebaseConfig);
firebase.analytics();


const messaging = firebase.messaging();

messaging.requestPermission().then(function () {
    console.log("permiso concedido");
    return messaging.getToken();
}).catch(function (err) {
    console.log("permiso denegado ",err);
});

messaging.onMessage(function(payload){
    console.log(payload);
});

, но я получаю этот код ошибки:

FirebaseError: "Messaging: We are unable to register the default service worker. ServiceWorker script at http://localhost/firebase-messaging-sw.js for scope http://localhost/firebase-cloud-messaging-push-scope encountered an error during installation. (messaging/failed-service-worker-registration)."

Почему?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...