Deezer content is served over HTTP

前端 未结 2 1683
孤独总比滥情好
孤独总比滥情好 2020-12-18 16:02

I am using Deezer Javascript SDK and loaded it over https.


2条回答
  •  情歌与酒
    2020-12-18 16:40

    This happens when your page and remote resource are using different HTTP protocols: one uses HTTP and another uses HTTPS.

    The preferred way to include third-party scripts is this one:

    
    

    Removing https: or http: tells browser to load the document using same protocol as current page. This should eliminate security warnings.

提交回复
热议问题