0

这是我们的页面 http//:www.playtown-game.com。如果您查看源代码,您会看到我们为 facebook 定义了开放图形标签以显示我们想要的图像和描述。但是它似乎不起作用,我们尝试使用 lint 清除 facebook 的缓存。

林特抱怨说:

Inferred Property:  The 'og:url' property should be explicitly provided, even if a valuec     an be inferred from other tags.
Inferred Property:  The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.

......即使我们已经在元标记中定义了这些......有什么想法吗?谢谢...

4

1 回答 1

1

我认为问题在于您用于将用户重定向到站点http://www.playtown-game.com/playtown/app/portal/的重定位方法

<meta http-equiv="Refresh" content="0; URL=http://www.playtown-game.com/playtown/app/portal/">

这是 facebook 抓取的标记https://developers.facebook.com/tools/debug/og/echo?q=http%3A%2F%2Fplaytown-game.com%2F

您的选择是:

  1. 将 facebook 打开图形属性添加到重定向用户的 html 文件
  2. 或使用其他一些重定向方法,例如 PHP
    <?php
        header("HTTP/1.1 301 Moved Permanently");
        header("Location: http://www.playtown-game.com/playtown/app/portal/");
    ?> 
于 2013-04-30T11:58:44.400 回答