Reputation: 163
I created a website than can post from my website to facebook using embeded post https://developers.facebook.com/docs/plugins/embedded-posts
My problem is I need to get all the comment of that certain post. I've read about the comment plugin https://developers.facebook.com/docs/plugins/comments
but i don't think that it can solve my problem since it will only give me a comment box for my website, not the comments from their post.
how do I get all the comment of that embeded post? can someone give me a link that might help? thanks.
Upvotes: 0
Views: 71
Reputation: 1727
You have to use the proper Facebook Graph API supplied for web developers to embed and manipulate Facebook content in their applications.
Read the specific documentation here.
EDIT: This is the PHP SDK here and the Reference Documentation, with classes you may use to achieve what you want here. Read it all, understand how to implement it in your project and you'll be up and running.
Upvotes: 1