Creating an event-invite using the Old Rest Api
- by Sven Koluem
Hi, because there is no way doing it with the GraphApi, i try to do it with the old REST Api,
but without any success.. no error msg. but also no invite.
$restApi = $facebook->api(array(
'method' => 'events.invite',
'eid' => $eid,
'uids' => $testuserId,
'personal_message' => 'testing',
'access_token' => $accesstoken,
));
print '<pre>' . print_r($restApi, true) . '</pre>';
Or maybe some of you, knowing a better way..
thx sven