为什么当我点击发布我的图片时没有在Facebook上显示?

时间:2015-06-29 10:39:12

标签: facebook timthumb

在我的网站上,当我点击Facebook按钮分享帖子时,我得到了正确图像的预览,但是一旦我发布了相同的图片,就没有在Facebook内显示。

所以我试图从调试器中获取新的scrape,我没有任何相关的问题,也在“当共享时,这将包含的内容”下面显示正确的图像。

修改

我的头部没有元标记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.');
    }
}

我的代码有什么问题吗?

0 个答案:

没有答案