我正在使用php api上传照片和发布签到。 几个星期前,我的照片会自动显示在新闻Feed中,但现在不是。 我的代码:
$photo_details = array('message'=> 'TEST');
$file='../uploads/'.$_GET['filename'];
$photo_details['image'] = '@' . realpath($file);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
顺便说一句,我的chekins显示在News Feed
中