我的应用程序上的“赞”按钮喜欢返回我的服务器的链接,而不是 Facebook 页面
我创建了几个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该对
标记使用href
属性。请参阅评论插件文档上的 XFBML 示例
You should use
href
attribute to<fb:comments>
tag.See XFBML example on Comments Plugin documentation