我无法使用Graph API执行以下操作,因此我尝试使用旧的REST API执行此操作, 但没有任何成功......没有错误信息,但也没有邀请。
$restApi = $facebook->api(array(
'method' => 'events.invite',
'eid' => $eid,
'uids' => $testuserId,
'personal_message' => 'testing',
'access_token' => $accesstoken,
));
print '<pre>' . print_r($restApi, true) . '</pre>';
或许你们中的一些人知道更好的方式......
答案 0 :(得分:0)
在FB Bugzilla {@ 3}}
上有关于使用Graph API的事件邀请的公开投票我认为你的问题是你需要array
uids试试:
$restApi = $facebook->api(array(
'method' => 'events.invite',
'eid' => $eid,
'uids' => array($testuserId),
'personal_message' => 'testing',
'access_token' => $accesstoken,
));
print '<pre>' . print_r($restApi, true) . '</pre>';
- 迈克尔