I am using the Facebook comments plugin as the commenting mechanism on a site. I know how to receive new notifications of each comment as the admin, however I would like the user that created the page that the comment is on to receive a notification as well. Users login / register with Facebook and they can post certain items on the site. Those items belong to them and have their own individual comment box. On the page I can easily grab the Facebook user ID of the page author and we have their email stored. Any thoughts on this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Thought I would answer this myself. Its actually quite easy. Facebook allows you to subscribe to comment events. So in your Facebook javascript init:
So in the call back I just have an ajax function that takes the id of current page, looks it up, finds the page owner, and sends an email to them whenever a comment is posted on that page. EASY! |
|||
|
|