Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to be notified of comments posted via the Facebook Comments Social Plugin

I recently implemented the Facebook social plugin for comments on my blog. I assumed, incorrectly, that I would get a Facebook notification when someone posts a comment to one of my articles. I was wondering if that is a possibility.

I have read references to the use of a event.subscribe function in the javascript SDK, but I wasn't really interested in creating a javascript-based notification dingus but would rather just see the little badge in my Facebook notification window.

I'd love any insight on how others have addressed this.

Thanks in advance!

like image 651
Kris Avatar asked Jun 13 '11 21:06

Kris


People also ask

How do I get comment notifications on Facebook?

You won't get notified when someone replies to a comment. Go to the post that you'd like to turn notifications on or off. Tap then tap More and select Turn on notifications for this post or Turn off notifications for this post. The person who posted won't be notified that you turned notifications on or off.

Why is my Facebook not notifying me of comments?

Launch your Facebook app and navigate to Menu -> Settings -> Notifications. In the Notification settings, scroll down and tap the Push menu. Enable it. Ensure that Facebook can send notifications for comments, friend requests, tags, likes, etc.

Why does Facebook Notify me when someone comments on a post?

Most Facebook notifications tend to be a result of your own interactions with the site. You get notifications because you comment on posts, join groups or follow pages. The less you do of these things, the fewer notifications you'll receive.

What is a Facebook Comments plugin?

The comments plugin lets people comment on content on your site using their Facebook account. People can choose to share their comment activity with their friends (and friends of their friends) on Facebook as well. The comments plugin also includes built-in moderation tools.


2 Answers

Just add yourself as moderator under Facebook developers comments tool. That's it. You'll start getting notifications of any comments on any of your blog posts.

facebook notification of comments on your blog posts

Shorter way:

  1. Open this url (am assuming you are signed into Facebook and is administrator of your Facebook app):
    https://developers.facebook.com/tools/comments/
  2. Click on settings
  3. Add yourself (or any of your friend/employee) as moderator.

Lengthier way:

  • Click on 'Moderation Tool' on any of your blogpost's facebook comments.
  • You must be on Facebook developers page now. On this page, you must be seeing something like 'your app name' > 'the blogpost title' (from where you clicked moderation tool). Here click on your app name.
  • On this new page, click on settings.
  • You must be seeing a modal now. Add yourself (or any of your friend) as moderator here.

You must be getting notifications now.

like image 50
Saurabh Hooda Avatar answered Sep 22 '22 05:09

Saurabh Hooda


For those who have been struggling to find a way to get notified when someone sends a comment on your page, here's a (sort of) solution.

  1. Assuming you've created an app for your website, add the following meta tag to your <head>: <meta property="fb:app_id" content="YOUR_APP_ID_HERE" />

  2. Then in Facebook Moderation Tool choose your app and click on Settings in top right corner. In settings, choose Moderation rules tab and at the bottom, you'll find an option Closed under Moderation heading. Select this option. By setting Closed option you basically have to approve all comments that are added to your site, but right now that's the only option how to get notified right in your Facebook without setting up custom listeners on comment.create event. That's also why this solution is sort of solution.

  3. Also don't forget to add yourself as a moderator as Saurabh's answer suggests (otherwise you won't get any notification in your facebook).

like image 33
emil.c Avatar answered Sep 22 '22 05:09

emil.c