我在将图片添加到 FB 事件时遇到问题。要创建事件,我使用 FB PHP SDK。
这是代码:
$fb_config = array(
'appId' => 'xxx',
'secret' => 'xxx',
'fileUpload' => true
);
$facebook = new Facebook( $fb_config );
$facebook->setFileUploadSupport(true);
$access_token = get_option( 'facebook_token' );
$facebook->setAccessToken( $access_token );
$eventInfo = array(
'fields'=>'name,picture,start_time,description',
'name' => 'Event name',
'start_time' => 'Start Date',
'end_time' => 'End Date',
'description' => 'Event Desc',
'picture' => 'http:// link to the image on the same server as provided on the app conf page.'
);
$result = $facebook->api(
'/fb_page_id/events',
'post',
$eventInfo
);
print_r($result); // {id: fb_event_id }
使用此代码事件可以很好地创建,但缺少事件的图片。当我使用具有相同字段的 Facebook Graph Api 资源管理器工具时,图片也丢失了。
感谢您的帮助!