Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook comment moderation tool

I have just added the facebook comments plugin and I am seeing a first comment of a user.

But if I go to http://developers.facebook.com/tools/comments there isn't any recent comments.

Any clue?

like image 329
dynamic Avatar asked Oct 17 '11 18:10

dynamic


People also ask

Can Facebook comments be moderated?

You can proactively moderate comments by blocking words or applying a profanity filter. When these features are enabled, comments containing these keywords or profanity are hidden.

How do I turn on comment moderation on Facebook?

Comment moderation These features can be accessed by: Viewing your Facebook page and clicking on 'Edit page' in the top right hand corner. You will then automatically be taken to the 'Manage Permissions' tab where you can alter the 'Default landing tab' and the 'Posting ability'.

Does Facebook have auto moderation?

You can set up Auto-moderation rules for your Facebook posts, direct messages, and ads.

What does moderate comments mean on Facebook?

When we moderate, we can hide comments, which leave the comments visible to the poster's Facebook friends but not the rest of humanity, or we can block an individual entirely, which hides their past posts and withdraws their future ability to comment.


1 Answers

You will want to make sure you've specified your Facebook App ID in the header section:

<meta property="fb:app_id" content="{YOUR_APP_ID}">

This will give administrators of your application in-line access (in my experience it takes a bit to show up, possibly due to caching).

Keep in mind that Facebook recommends this approach over doing an admins meta when using multiple boxes. From Facebook seen here, scroll to Moderation Tools:

If your site has many comments boxes, we strongly recommend you specify a Facebook app id as the administrator (all administrators of the app will be able to moderate comments). Doing this enables a moderator interface on Facebook where comments from all plugins administered by your app id can be easily moderated together.

You can access this comment tool by going to the following link, after inserting your APP ID:

https://developers.facebook.com/tools/comments?id={YOUR_APP_ID}&view=queue

Or by viewing the index here.

like image 134
ShaneC Avatar answered Sep 28 '22 01:09

ShaneC