gpt4 book ai didi

Facebook 'Like' 按钮中断 https/SSL

转载 作者:行者123 更新时间:2023-11-30 05:17:42 24 4
gpt4 key购买 nike

在我维护的电子商务网站上,我按照此处的说明添加了一个 Facebook“赞”按钮:

http://developers.facebook.com/docs/reference/plugins/like

我正在使用 iframe 方法:

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" 
scrolling="no" frameborder="0" style="border:none; overflow:hidden;
width:450px; height:80px;" allowTransparency="true">
</iframe>

它有效,但如果客户碰巧登录了她的帐户,她会收到臭名昭著的“mixed content warning

有没有一种方法可以使用相同的 Facebook“赞”按钮代码,但在 SSL 模式下不会插入非 https 内容?

最佳答案

您可以通过不指定传输协议(protocol)来避免针对支持 SSL 的域的 SSL 警告。例如不要包含 http://https://,而是使用 //

代替

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

使用

<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

关于Facebook 'Like' 按钮中断 https/SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3587021/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com