在 HTTPS 模式下,fb:profile-pic 上的 FB.XFBML.parse 会生成指向图像的 HTTP 链接
HTTPS 模式下的 FB.XFBML.parse 使 HTTP 链接到图像(而不是 HTTPS)。这是FB.XFBML.parse的错误吗?我该怎么做才能避免这个问题?
FB.XFBML.parse in HTTPS mode makes HTTP links to images (not HTTPS). Is this bug of FB.XFBML.parse? What can I do to avoid this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 GraphAPI 图片链接 http://developers.facebook.com/docs/reference 解决了这个问题/api/。对于 HTTPS 协议,它有特殊参数 return_ssl_resources=1。
所以我使用 https://graph.facebook.com/facebook_id/picture?return_ssl_resources=1< /a> 链接。
I resolve this problem by using GraphAPI Pictures links http://developers.facebook.com/docs/reference/api/. It has special parameter return_ssl_resources=1 for HTTPS protocol.
So I use https://graph.facebook.com/facebook_id/picture?return_ssl_resources=1 link.