1

我将 Facebook 评论社交插件集成到我的网站中。我想知道在我的网站上发布的用户评论是否也会出现在粉丝页面上?像User XYZ has commented on article ABC什么?

4

1 回答 1

1

对我来说听起来像是自定义功能。

https://developers.facebook.com/docs/reference/plugins/comments/

How do I know when someone comments on my site?

You can subscribe to the 'comment.create' and 'comment.remove' events through FB.Event.subscribe.

这个过程就在这里:

https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

创建应用程序代表页面(而不是用户)发布操作。但关键是:如果他们无法控制隐私,您可能不应该在页面墙上使用他们的名字,至少不要使用他们的全名。

于 2012-11-28T21:27:49.923 回答