Facebook 上有这个新的缩略图视图(参见本文下方的图片)。但是我尝试过的每一个命令或属性,在使用 api 发布时我从来没有得到这个......
这就是我的发布活动现在的样子:
$status = $facebook->api('/me/feed', 'POST', array('access_token' => $page_access_token, 'fields' => 'picture.height(960).width(1833)', 'message' => $text, 'icon' => 'http://www.renoi.de/images/lg.jpg', 'link' => $link, 'name' => $title, 'user_generated' => 'true', 'images[0]' => $pic2, 'source' => $pic2, 'height' => '960', 'width' => '1833'));
这是 fb 用于手动发布的 og:image 行:
<meta property="og:image" content="<?php echo $og_image; ?>" />
请相信我,$og_image 和 $pic2 是完全相同的 url,没有缩略图,完全质量,远远超过 720p。
我非常感谢任何关于这个问题的不是“使用?type=large”或某事的意见。像那样。