Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Moderate comment plugin without application id?

I created a comment plugin from https://developers.facebook.com/docs/reference/plugins/comments/

It doesn't have an application id. How can I moderate it?

Or if it must have an ID, how do I put an application ID to an existing comment plugin?

like image 940
IMB Avatar asked May 27 '13 19:05

IMB


People also ask

Why can't I see the comments on my Facebook post?

The admin has disabled the comments on the post. You have an internet issue due to which the comments aren't loading. Caching issues in your browser. Facebook app is not updated.

How do you add a Facebook comment to a plugin?

Upon activation, you need to visit Settings » Lazy FB Comments to configure the plugin. To use Facebook comments on your website, you will have to create a Facebook app and then add the application ID to the plugin's settings page.

How can I comment faster on Facebook?

Click the Settings And Privacy icon at the top of your page. Click settings, then public posts. Scroll right down to get to comment ranking and switch on. Reply Fast.


1 Answers

Add your id to your meta data

To moderate, you need to list yourself as an admin. To do this, simply include open graph meta tags on the URL specified as the href parameter of the plugin. These tags must be included in the of the document. Include

<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>

The same process for the app id

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 choose to specify either fb:app_id or fb:admins, but not both. This tag should be specified in the .

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

It's all there in the document you linked https://developers.facebook.com/docs/reference/plugins/comments/

like image 126
phwd Avatar answered Sep 28 '22 07:09

phwd