5

链接到 facebook 调试器。在我更改 myhosting 提供商之前,Facebook 共享运行良好。Fb 分享现在从此页面中选择无效图像

4

3 回答 3

6

根据 Facebook 的对象调试器错误

'article' 类型的URL ' http://www.yoursite.com/contentspage.aspx?id=17745 ' 的对象无效,因为属性 'og 的给定值 'thumbimage.ashx?w=100&h=100&imgid=17745' :image:url' 无法解析为类型 'url'。

要更正它,请更改

<meta property="og:image" content="thumbimage.ashx?w=100&amp;h=100&amp;imgid=17745">

<meta property="og:image" content="http://www.yoursite.com/thumbimage.ashx?w=100&amp;h=100&amp;imgid=17745" />

根据 facebook 文档的建议,图像必须满足200px两个维度并添加

<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
于 2013-05-09T07:53:38.027 回答
1

根据 Facebook 的对象调试器,您遇到以下错误

'article' 类型的URL ' http://www.yoursite.com/contentspage.aspx?id=17745 ' 的对象无效,因为属性 'og 的给定值 'thumbimage.ashx?w=100&h=100&imgid=17745' :image:url' 无法解析为类型 'url'。

要采取纠正措施,您需要将图像元标记从

<meta property="og:image" content="thumbimage.ashx?w=100&amp;h=100&amp;imgid=17745">

类似于

<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" />

正如这里建议的那样

于 2013-05-09T07:45:34.980 回答
0

在我的情况下,我不得不删除返回线尾端

从:

<meta property="og:image" content="
  http://www.cave-canem.cat/fitxers/imatges/productes/81/328/medium_IMG_1764.JPG
">

到:

<meta property="og:image" content="http://www.cave-canem.cat/fitxers/imatges/productes/81/328/medium_IMG_1764.JPG">
于 2017-06-20T18:27:37.173 回答