我的应用程序上的“赞”按钮喜欢返回我的服务器的链接,而不是 Facebook 页面

发布于 2024-12-10 17:37:34 字数 611 浏览 0 评论 0原文

我创建了几个 iframe 应用程序。他们可以在这里看到。 www.facebook.com/iancareyfanpage

我创建了一些 iframe 应用程序并插入以下内容来显示点赞和评论部分。

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=123543567752303"></script>
<script>
FB.init({
appId : '123543567752303',
status : true,
cookie : true,
xfbml : true
});
FB.Canvas.setAutoResize(100);

</script>
</body>
</html>
<fb:comments width="500"></fb:comments>

然而,当有人点击“赞”按钮或留下评论时,链接会返回到我的实际网络服务器并像网页一样显示 iframe 应用程序,我需要更改人们页面上的 url。抱歉,如果我没有很好地解释自己,希望有人能理解我的意思。

I have created a couple of iframe apps. they can be seen here.
www.facebook.com/iancareyfanpage

I have created some iframe apps and inserted the following to display a like and comments section.

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=123543567752303"></script>
<script>
FB.init({
appId : '123543567752303',
status : true,
cookie : true,
xfbml : true
});
FB.Canvas.setAutoResize(100);

</script>
</body>
</html>
<fb:comments width="500"></fb:comments>

However, when someone clicks the like button or leaves a comment the link back takes you to my actual webserver and displays the iframe app like a webpage, i need to change the url that gets put on peoples pages. sorry if i'm not explaining myself very well, hopefully someone will understand what I mean.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ζ澈沫 2024-12-17 17:37:34

您应该对 标记使用 href 属性。

请参阅评论插件文档上的 XFBML 示例

You should use href attribute to <fb:comments> tag.

See XFBML example on Comments Plugin documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文