I am creating facebook application.I want to create a event.I tried following url but does not work for me. https://graph.facebook.com/profileid/events?access_token=generatedaccess_token&name=somename&location=locationname I am getting json output with blank data.There is nothing in data tag.When I adding method=post,gives me error saying that invalid parameter.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
In order to create an event, you have to issue an HTTP POST request. This is straight from the facebook graph api documentation: http://developers.facebook.com/docs/reference/api/page/#events An HTTP POST request is basically like submitting a form with method="post". You can use cURL to do this fairly easily:
You can refer to the section on batch request for more help on this: http://developers.facebook.com/docs/reference/api/batch/ |
|||
|