I have a site where people can make posts on it, and I need these posts to go straight to the feed of a group in Facebook. (I am the owner of the group)
Is it possible? What do I need? How should it work?
I found this https://github.com/facebook/php-sdk, but I don’t if it is what I need, and couldn’t figure out how does it work.
To do this you’ll need to:
POSTthose comments to your Facebook group using the Graph API.Additionally, to prevent spam, you may want to authenticate your users with Facebook before they comment.
If you’re doing this in PHP, the PHP SDK saves you a lot of coding. To use it, your php environment must have cURL installed and enabled.