我正在使用 PHP SDK 将图像上传到事件:
if ($filename = uploadimage('picture')) // returns full server path to picture
{
$facebook->setFileUploadSupport(true);
$eventinfo = array(
'picture' => '@' . $filename,
'access_token' => $access_token);
$result = $facebook->api('/' . $event_id . '/', 'post', $eventinfo);
} `
但是,这只会创建一个缩略图,您如何将图像设置为主要的大型活动图片?