iframe - Failed to load resource: net::ERR_INSECURE_RESPONSE - Stack Overflow
Your resource probably use a self-signed SSL certificate over HTTPS protocol. Chromium, so Google Chrome block by default this kind of resource considered unsecure.
You can bypass this this way :
- Assuming your frame's URL is
https://www.domain.com
, open a new tab in chrome and go tohttps://www.domain.com
. - Chrome will ask you to accept the SSL certificate. Accept it.
- Then, if you reload your page with your frame, you could see that now it works
The problem as you can guess, is that each visitor of your website has to do this task to access your frame.
You can notice that chrome will block your URL for each navigation session, while chrome can memorise for ever that you trust this domain.
If your frame can be accessed by HTTP rather than HTTPS, I suggest you to use it, so this problem will be solved.
Read full article from iframe - Failed to load resource: net::ERR_INSECURE_RESPONSE - Stack Overflow
You can check the solutions and the methods from here at: How to Fix ERR_INSECURE_RESPONSE Code Problem
ReplyDelete