How can I integrate Facebook's social plugin comment with Rails?
I want the owner of a post to开发者_如何学Go receive an Email every time someone comments on his post. How do I get that message to Rails?
Thanks in advance!
This is very similar to my answer on this SO question.
Instead of attaching to the "edge.create" event, attach to the "comment.create" event
FB.Event.subscribe('comment.create', function(response) {
// Fire an AJAX call to send an email to your post's owner
});
精彩评论