I was able to create facebook events through graph api from my facebook app with this POST request:
POST https://graph.facebook.com/<MY_APP_ID>/events?
start_time=2013-12-21T19%3A30%3A00
&end_time=2013-1221T20%3A30%3A00
&name=test+event
&access_token=<MY_APP_ACCESS_TOKEN>
The response was a JSON, with the id of the newly created event.
After this i tried to create an other event with 'SECRET' privacy:
POST https://graph.facebook.com/<MY_APP_ID>/events?
start_time=2013-12-21T19%3A30%3A00
&end_time=2013-1221T20%3A30%3A00
&name=test+secret+event
&privacy_type=SECRET
&access_token=<MY_APP_ACCESS_TOKEN>
The response here was also a JSON with the id of the created event.
After that I tried to list the events of my app:
GET https://graph.facebook.com/<MY_APP_ID>/events/?access_token=<MY_APP_ACCESS_TOKEN>
In the response JSON, I can see only one, the not-secret event. The secret one is missing.
After this, i tried to get the details of the events one-by-one:
GET https://graph.facebook.com/<EVENT_ID>/?access_token=<MY_APP_ACCESS_TOKEN>
In case of using the id of the non-secret event, the response contains all the details of that event, but when I'm using the id of the secret-event, it responds with an error msg:
{
"error": {
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
}
}
Why am I not able to create SECRET (invite only) events with my app?