在我的网站上,当我单击 Facebook 按钮分享帖子时,我会得到一个带有正确图像的预览,但是一旦我发布了相同的图片并没有显示在 Facebook 中。
所以我试图从调试器中获取新的抓取,我没有任何相关的问题,也在“共享时,这就是将包含的内容”下方,它向我显示了正确的图像。
编辑
我的头部没有元标记og:image
,因为我的页面有不同的项目,每个项目都有一个 facebook 按钮。我正在为范围使用 TimThumb(版本 2.8.14)脚本。
<div class="song-art"><a href="'.$this->url.'/index.php?a=track&id='.$row['id'].'" property="og:image" rel="loadpage"><img style="width: 112px;" src="'.$this->url.'/thumb.php?src='.$row['art'].'&t=m&w=200&h=200" id="song-art'.$row['id'].'" /></a></div>
这是 TimThumb 脚本的自定义部分的外观:
require_once('./includes/config.php');
if(!empty($_GET['t'])) {
if($_GET['t'] == 'a') {
$type = 'uploads/avatars';
$width_list = array(25, 50, 100, 112, 150, 200);
$height_list = array(25, 50, 100, 112, 150, 200);
$quality_list = array(50, 75, 100);
} elseif($_GET['t'] == 'm') {
$type = 'uploads/media';
$width_list = array(25, 50, 75, 100, 112, 200, 204, 300, 435, 500, 650, 700, 800, 900, 1000);
$height_list = array(25, 50, 75, 100, 112, 200, 204, 300, 435, 500, 650, 700, 800, 900, 1000);
$quality_list = array(50, 75, 100);
} elseif($_GET['t'] == 'c') {
$type = 'uploads/covers';
$width_list = array(300, 800, 900, 1000, 1100, 1200);
$height_list = array(100, 200, 300);
$quality_list = array(50, 75, 100);
} else {
exit('Invalid parameter value');
}
} else {
exit('The \'t\' parameter is not set.');
}
// Build up the src query
$_GET['src'] = $CONF['url'].'/'.$type.'/'.$_GET['src'];
if(!empty($_GET['w'])) {
if(!in_array($_GET['w'], $width_list)) {
exit('Invalid width value.');
}
}
if(!empty($_GET['h'])) {
if(!in_array($_GET['h'], $height_list)) {
exit('Invalid height value.');
}
}
if(!empty($_GET['q'])) {
if(!in_array($_GET['q'], $quality_list)) {
exit('Invalid quality value.');
}
}
我的代码有什么问题吗?