Ruby on rails 如何将Facebook的社交插件评论与Rails集成?

Ruby on rails 如何将Facebook的社交插件评论与Rails集成?,ruby-on-rails,facebook,Ruby On Rails,Facebook,我希望一篇文章的所有者在每次有人评论他的文章时都能收到一封电子邮件。如何将该消息传递给Rails 提前谢谢 这与我对此的回答非常相似 附加到comment.create事件,而不是附加到edge.create事件 FB.Event.subscribe('comment.create', function(response) { // Fire an AJAX call to send an email to your post's owner });

我希望一篇文章的所有者在每次有人评论他的文章时都能收到一封电子邮件。如何将该消息传递给Rails


提前谢谢

这与我对此的回答非常相似

附加到comment.create事件,而不是附加到edge.create事件

FB.Event.subscribe('comment.create', function(response) {
  // Fire an AJAX call to send an email to your post's owner
});