Open Graph 调试器无法正确看到 og:url 的问题
我在尝试验证我的开放图对象时遇到问题。调试器显示:
“在 URL 'http://digiarmy.com/ogItem.php?id=3' 或通过重定向或 'og:url' 指定的 URL 之一获取对象时出错属性包括 http://www.digiarmy.com/ogItem.php?id=3。"
然而,在标题为“原始开放图文档信息”的部分中,我看到了这一点:
<meta property="og:url" content="http://www.digiarmy.com/ogItem.php?id=3" />
我只是错过了某些内容还是某些内容不起作用?我做了饼干食谱教程,效果很好。
I'm having an issue trying to verify my Open Graph object. The debugger says:
"There was an error in fetching the object at URL 'http://digiarmy.com/ogItem.php?id=3', or one of the the URLs specified via a redirect or the 'og:url' property including one of http://www.digiarmy.com/ogItem.php?id=3."
Yet in the section titled Raw Open Graph Document Information I see this:
<meta property="og:url" content="http://www.digiarmy.com/ogItem.php?id=3" />
Am I just missing something or is something not working? I did the Cookie Recipe tutorial and it works fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 url 元标记中删除 www,因为您要将 www 重定向到非 www。
Remove the www from the url meta tag since you are redirecting www to non-www.
尝试添加到
您文档的头部上方。如果这不能解决问题,您可能需要删除 DNS 中该页面的所有重定向。
try adding
above the head of your doc. If this does not solve the issue, you may wanna remove any redirects you have in DNS for that page.