我试图将正确的og:image设置好几个小时。 Facebook调试器告诉我找到了正确的og:图像 但是它没有被使用,它给我发出了警告:
“og:图像未定义,无法下载或不够大。请使用og:image metatag定义所选图像,并使用至少200x200px且可从Facebook访问的图像。”
我尝试过各种可能的格式,每种可能的分辨率,每种可能的大小。我尝试过使用和不使用宽度和高度标签等等。
它一直在向我抛出这个雄心勃勃的错误。有人可以对此有所了解吗?
这是我的标签:
<meta property=fb:app_id content=1385xxxxxxx>
<meta property=og:site_name content=AnyJobby>
<meta property=og:type content=website>
<meta property=og:url content=https://www.anyjobby.nl/>
<meta property=og:title content="AnyJobby - Vind een betrouwbare Jobber uit jouw buurt!">
<meta property=og:description content="Plaats gratis jouw klusje of karweitje op AnyJobby en ontvang direct biedingen van handige Jobbers uit de community.">
<meta property=og:image content="https://www.anyjobby.nl/social.png"/>
<meta property="og:image:secure_url" content="https://www.anyjobby.nl/social.png" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="400" />
答案 0 :(得分:0)
在您的第一个og:image代码中,您尚未关闭引号中的代码
从以下位置更改:
<meta property=og:image content="https://www.anyjobby.nl/social.png"/>
要:
<meta property="og:image" content="https://www.anyjobby.nl/social.png"/>