Learn-to-send-email-via-google-script-html-no-server: Insecure script error

Created on 20 Feb 2019  路  3Comments  路  Source: dwyl/learn-to-send-email-via-google-script-html-no-server

Hey there.

I just realized that the form fields capture information on mac but not windows.

I think I've narrowed down the problem, but unsure how to get over it. On windows, I see this "Insecure content blocked" notification at the top right of my screen. (See screenshots below)

Has anyone faced this already? Any direction would be helpful thanks!

image 1
how to take screenshots in windows 10 - google chrome 2_20_2019 1_42_17 pm

Most helpful comment

My guess is this is because some content is HTTP and other is HTTPS? The browser's javascript console might have more detail.

All 3 comments

My guess is this is because some content is HTTP and other is HTTPS? The browser's javascript console might have more detail.

Hmm how would I change this content to be under HTTPS?

vendor-ga.js:13429 Mixed Content: The page at 'https://x.com/thankyou/' was loaded over HTTPS, but attempted to connect to the insecure WebSocket endpoint 'ws://x.com:9485/'. This request has been blocked; this endpoint must be available over WSS.

This is error that I received.

The error is hinting at what you need to do. You are loading resources via HTTPS which is a secure transfer method. Resources over websockets must also be secure, so use WSS.

In your case this should be wss://x.com:9485/.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jchesner picture jchesner  路  3Comments

tiffting picture tiffting  路  4Comments

bacloud14 picture bacloud14  路  4Comments

Brothman picture Brothman  路  3Comments

mckennapsean picture mckennapsean  路  4Comments