什么会导致 Twitter 卡片验证器给出重定向循环错误?

What could cause the Twitter card validator to give a redirect loop error?

我在 http://parlaywith.me 上使用 https://cards-dev.twitter.com/validator

当我包含这个标签时(当前包含):

<meta property="og:url"
       content="http://parlaywith.me">

我收到这个错误:

当我删除标签时,我得到:

如何保留 og:url 标签并避免错误?

您可能必须指定带有尾部斜杠的 URL:

http://parlaywith.me/

而不是

http://parlaywith.me

另请注意,如果值为 URI,HTML5 requires 将使用 link(而不是 meta):

<link property="og:url"
    href="http://parlaywith.me/">