Mixed Content: The page at 'https://yourwebsite.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://otherwebsite.com/'. This request has been blocked; the content must be served over HTTPS.
After running into this error a few times, I have learned in modern web browsers you cannot have mixed content. That means an https site cannot make a request to one that is just http.
So my issue is enabling this in safari.
However in the development stages I am able to enable this in chrome
1) Click on the shield.
2) Click "Load Unsafe Scripts"
3) Now you should be able to see the blocked content. but of course the website will no longer be secure.
I am also able to do this in firefox.
1) Click on the upside-down !
2) Click on the > arrow.
3) Disable protection for now.
4) Now the site is not secure, but your request/ content is available.
However, I have looked forever and cannot find this in safari for any of the recent versions. Even when enabling developer tools, I am unable to find it. I looked through some of the release logs to see if this feature was deprecated, and could not find anything.
Is there any way to do this in safari?