I’m able to create and delete events, but haven’t found where to post follow-up comments to events.
So, is it even possible to post a comment to an existing event, created by my application, using php-sdk?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I am assuming that you meant “make a post on a event wall” because you can not comment events in Facebook. You can use the PHP SDK (see on github) to make any call on the graph API, including posting on an event wall.
You need for that the access token of your application (see how to get it in the Facebook reference) and the ID of the event (
EVENT_ID). And then :More on publishing post in the Facebook graph API Documentation.
Hope that helps !