我正在使用PHP中的示例应用程序将图片上传到Facebook并使用该链接创建故事。一切都很好,除了缩略图没有显示。有没有人知道是否限制实际使用上传的相册图像作为缩略图?下面是我正在使用的代码
$ret_obj = $facebook->api('/me/photos', 'POST', array(
'image' => '@'.realpath($photo),
'message' => $message,));
$imgId = $ret_obj['id'];
$objectjson = json_encode(array('title'=>'Sample','url'=>'http://facebook.com/photo.php?fbid='.$imgId,'description'=>'This is a sample','image'=>'http://facebook.com/photo.php?fbid='.$imgId));
$ret_obj = $facebook->api('/me/objects/xxxx:yyyy', 'POST', array(
'object' => $objectjson));
编辑:忘记提及我使用建议的尺寸图像,除了上传的图像之外的任何其他图像都可以用作缩略图