Why am I seeing "Error - Only secure origins are allowed" for my service worker?

48.6k views Asked by At

When I try to add a service worker on my progressive web app page, why does the browser console show the following error?

ERROR "Uncaught (in promise) DOMException: Only secure origins are allowed

JS Code:

(function () {
    'use strict';

    // TODO add service worker code here
    if ('serviceWorker' in navigator) {
        navigator.serviceWorker
            .register('service-worker.js')
            .then(function () {
                console.log('Service Worker Registered');
            });
    }
})();
5

There are 5 answers

0
Harshal On BEST ANSWER

Try using http://127.0.0.1:8080 for hosting locally instead of http://192.168.29.53:8080

0
tony19 On

From Service Worker FAQ:

Q: I get an error message about "Only secure origins are allowed". Why?

A: Service workers are only available to "secure origins" (HTTPS sites, basically) in line with a policy to prefer secure origins for powerful new features. However http://localhost is also considered a secure origin, so if you can, developing on localhost is an easy way to avoid this error.

You can also use the --unsafely-treat-insecure-origin-as-secure command-line flag. This flag must be combined with a --user-data-dir flag. For example:

$ ./chrome --user-data-dir=/tmp/foo --unsafely-treat-insecure-origin-as-secure=http://your.insecure.site

If you want to test on https://localhost with a self-signed certificate, do:

$ ./chrome --allow-insecure-localhost https://localhost

You might also find the --ignore-certificate-errors flag useful.

0
Rajesh Hegde On

You can check for protocol before registering the service worker like this, location.protocol === 'https:' && serviceWorker.register('service-worker.js')

0
Anandh Krishnan On
  1. type url

    chrome://flags/#unsafely-treat-insecure-origin-as-secure

  2. Enter url in the textarea

  3. Choose Enabled in the select option look at the image to see detail

enter image description here

2
CLIFFORD P Y On

in chrome type chrome://flags

search "secure origin"

enter image description here

then click on Enabled, relaunch chrome.