I'm using PHP and FacebookAPI, all is almost ok except for a strange error.
I tried to find solution on facebook developers site and google but with no luck.
This is the scenario:
- Event 368441533230244 is created
- User 100004484143351 is invited to the event 368441533230244
Now I want to remove the user from the event.
According to Facebook API docs, my APP own the permissions
- rsvp_event
- user_event
- friend_event
And many others :)
Now calling the api:
$FB->api("368441533230244/invited/100004484143351", 'DELETE');
I obtain an Exception with the following details:
["result":protected] => array(1) {
["error"] => array(3) {
["message"] => string(8) "(#1002) "
["type"] => string(14) "OAuthException"
["code"] => int(1002)
}
I was unable to find something about Error Code 1002, and as you can see there is no error description.
Any idea? :) Thanks in advance