Facebook comments on moderation, appid or facebook page?

I want to add Facebook comments to certain pages of our site. I understand that I can do this simply by creating code for every page I want to comment on using the generator here ... http://developers.facebook.com/docs/reference/plugins/comments/

But to enable comment moderation, I think I need to do any of them in the main section of my site:
<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>
<meta property="fb:app_id" content="{YOUR_APPLICATION_ID}">

Also add some namespaces to the <html> .

The application ID method looks better than the user ID for moderating a large number of comment pages. At the moment I have a Facebook Page page with 1000 or so Likes. I do not have a Facebook application.

So here are my questions:

Do I need to create a Facebook application in addition to my page?
Or can I use the Facebook page id instead of the app id?
Does the application name need to match the value of my Facebook page?
Is there any link created between the Facebook app and the page?
Or is this application exclusively for internal purposes and not accessible to users?

I do not want this to be Javascript. Iframes seems like the best solution, so comments are loaded asymmetrically. JS can block page loading.

Greetings, B

+6
source share
2 answers

Anytime when you create an application that will use facebook, you need to make a facebook application on your developers site. Pages are different from applications. The only thing I have ever used for the page id is like it, I thought that there are other uses for them.

Your application does not have to fit the page, but you may want to

A) Make a tab of this page

enter image description here

B) Disable Stream post URL security on the developers page (better for you, I think)

enter image description here

+2
source

There is an article about this article: http://codeitdown.com/facebook-comments-moderate-button/ Short answers:

  • Do I need to create a Facebook application in addition to my page? Or is it possible to use the Facebook page id instead of the application id? To enable "advanced" moderation, you need an application in addition to your page. Page ID cannot be used.

  • Does the application name need to match the value of my Facebook Page No

  • Is there any link created between the Facebook app and the page? Or is this application exclusively for internal purposes and not accessible to users? You can link your application and page or just not tell anyone about your application and use it only for moderation.

0
source

Source: https://habr.com/ru/post/893361/


All Articles