我已經創建了一個腳本,我希望用戶插入到他們的Url欄中。腳本如下。Javascript HTTPS獲取限制
javascript:x=new XMLHttpRequest();x.open("GET", "http://example.com/page.php?param1=value1¶m2=value2", true); x.send()
唯一的問題是,我打算用戶把它放到他們的Url欄是一個HTTPS網站。由於某種原因,它不能正常工作。這是我在Chrome的控制檯正在錯誤:
Mixed Content: The page at 'example.net'; was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'example.com/page.php?param1=value1¶m2=value2';. This request has been blocked; the content must be served over HTTPS.
Example.net是第三方網站& example.com是我的地盤。
無論如何,有沒有辦法擺脫這個錯誤?我一直在尋找,但沒有成功。謝謝。
通過HTTPS內容? –
我將如何通過Javascript來做到這一點? – user2724175
在你的URL中的'http'之後加一個's',並配置你的服務器。 –