I'm tried invite multiple users to a event. reading the documentation facebook, I found this:
http://developers.facebook.com/docs/reference/api/event/#invited
I wrote the following code(that does not works):
$facebook = new Facebook(array(
'appId' => '',
'secret' => '',
'cookie' => true,
));
if ($user = $facebook->getUser()) {
$friends = $facebook -> api('/me/friends');
$e_id = ""; //the event id
$friends = $friends['data'];
$e_details = $facebook -> api("/{$e_id}"); //information about the event
for($ids = null,$i = 0,$len = count($friends); $i < $len; $i++) {
$friend = $friends[$i];
$ids .= $friend['id'].',';
}
$data = $facebook -> api("/{$e_id}/invited?users={$ids}", 'POST');
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl(array('scope' => 'create_event'));
}
I'm getting the fowllowing error:
Uncaught OAuthException: (#200) Permissions error thrown in
what's the permission that he is saying? of according to the documentation only one permission is necessary, which I set.
Can someone point out my error? Any help is appreciated. Thanks in advance.
rsvp_evenin scope. – The Mask Sep 21 '11 at 21:19