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
source share