嗨我发现很多有用的答案如何在墙上分享我的网站链接时强迫Facebook发布图片(例如,这个真有帮助Facebook Post Link Image)
但我正试图实现相反的事情=> “当我发布到fb wall强制facebook不要拉任何图像时”
我想出的唯一解决方案是设置所有打开的图形元标记并将图像标记设置为空白
<meta content='' property='og:description'>
<meta content='' property='og:image'>
<meta content='MyTest app' property='og:site_name'>
<meta content='http://example.eu' property='og:url'>
<meta content='website' property='og:type'>
<meta content='10000123456789' property='fb:admins'>
<meta content='Movies and music' property='og:title'>
但在facebook url linter我正在
Object at URL 'http://example.eu/' of type 'website' is invalid because the given value '' for property 'og:image:url' could not be parsed as type 'url'.
那么如何强制facebook不要拉任何img?
答案 0 :(得分:0)
好的,在发布此消息后的几分钟内,我发现了不会导致linter错误的解决方案
将图片og标记设置为您的网站(不必指向图像)
<meta content='http://example.eu/' property='og:image'>
但如果有人有任何其他解决方案,请在此处分享