我有一个wordpress网站,并尝试过facebook评论社交插件http://developers.facebook.com/docs/reference/plugins/comments/, 它工作正常,但有可能改善吗? 人们可以使用他们的Facebook帐户登录并可以发表评论,但是,此活动只会发送到用户的Facebook墙上,是否可以将评论活动发送到用户的墙和我的墙上? 我想要的是,当人们评论我的wordpress facebook评论区时,它将显示在我的Facebook墙上 我很感谢你的帮助!
答案 0 :(得分:1)
用户没有在你的墙上写字。
他们正在评论某些内容/博客文章/网页网址,他们也选择在自己的墙上发布。
用户需要与您成为朋友才能在墙上写字(除了您自己的隐私权限)。
- 附加
将用户评论从您的网站/评论插件复制到您的墙上需要注意的事项是,用户可能会去,“ug是如何到达那里”然后请求删除或不再评论/再次
答案 1 :(得分:1)
基本上,您可以使用comment.create
函数subscribe comment.remove
和FB.Event.subscribe
个事件:
FB.Event.subscribe('comment.create',
function(response) {
{
console.log(response.href), /* Open Graph URL of the Comment Plugin */
console.log(response.commentID), /* The commentID of the new comment */
/* Do whatever you want here */
}
}
);
然后,您可以get the actual comment通过https://graph.facebook.com/<comment_id>
将其发布到您的墙上。
答案 2 :(得分:0)