当我在facebook linter中调试我的网页时,它会一直显示警告:
“未提供类型'字符串'的必需属性'og:title'”
我已阅读有关SO的建议并尝试过:
没有gzip压缩
重新抓取fb调试器
仅使用Facebook og meta标签构建新的测试页
但警告是一样的。
测试页代码为:
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" >
<head>
<title>testing page</title>
<meta property="og:title" content="testing page og title" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://www.skinvac.com/test.html" />
<meta property="og:image" content="https://www.skinvac.com/test-image.png" />
<meta property="og:description" content="testing page og description " />
<meta name= "keywords" content="test " />
<meta name= "description" content="test" />
</head>
<body>
<h1>test</h1>
<img src="test-image.png">
</body>
</html>
可在此处查看调试结果facebook share debugger result
警告:“'og:type'属性是必需的,但不存在。”
但是“og:title”属性位于标题标记中。
我该如何解决这个问题?
谢谢
答案 0 :(得分:7)
您使用的是https,但您没有有效的SSL证书。用代码中的http替换https,然后使用http链接进行测试。