链接在 Facebook 页面自定义选项卡上不起作用

Links not working on Facebook Page Custom Tab

我为 Facebook 页面创建了一个自定义标签。一切都在显示,唯一发生的问题是该选项卡中 link 的 none 正在运行。是否需要为 Facebook 标签页添加特殊代码才能使 link 正常工作?

这是 Facebook 标签。

https://www.facebook.com/AstellasUS/app/2475799012460272/

而link我已经使用了下面的基本HTML

<li>Twitter: <a href="http://www.twitter.com/astellasus">twitter.com/astellasus</a></li>
<li>LinkedIn: <a href="http://www.linkedin.com/company/astellas-pharma">linkedin.com/company/astellas-pharma</a></li>
<li>YouTube: <a href="http://www.youtube.com/user/AstellasUS">youtube.com/user/AstellasUS</a></li>
<li>Website: <a href="http://www.astellas.us">astellas.us</a></li>

它们“不起作用”,因为这些网站禁止通过 X-Frame-Options header.

在不同域的框架内显示

尝试在应用程序 iframe 中打开这些网站一开始并没有多大意义 - 所以只需将 target="_blank" 添加到这些链接,以便它们在新的 window/tab 中打开。