我使用了此页面上生成的代码:
https://developers.facebook.com/docs/reference/plugins/comments/
然而,由于我的页面是动态的,我替换了这部分:
<div class="fb-comments" data-href="http://example.com" data-width="470" data-num-posts="10"></div>
...与
<div class="fb-comments" data-href="http://www.mywebsite.com/index.php?a=[some dynamic name]" data-width="470" data-num-posts="10"></div>
当我尝试发布时,评论会显示,但是当我刷新页面时,它会消失。我做错了吗?
答案 0 :(得分:1)
是的,您的网址已获取参数。
facebook like按钮,评论框等,他们不使用get参数,所以你有这个:
http://www.mywebsite.com/index.php?a=[some dynamic name]
或者这个:
http://www.mywebsite.com/index.php
它完全相同