Facebook OpenGraph国际化

Facebook OpenGraph国际化,facebook,internationalization,facebook-opengraph,Facebook,Internationalization,Facebook Opengraph,我正在尝试使用facebook og标签实现国际化,以便在共享时使用正确的语言在页面上创建对象 这是正常请求页面时呈现的元标记: <meta property="og:ttl" content="120" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Clioco Make Up Bundle" /> <meta property="

我正在尝试使用facebook og标签实现国际化,以便在共享时使用正确的语言在页面上创建对象

这是正常请求页面时呈现的元标记:

<meta property="og:ttl" content="120" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Clioco Make Up Bundle" />
<meta property="og:description" content="The more people who take part in Clioco Make Up Bundle&#39;s giveaway, the more free stuff everyone gets. So sign up now and tell your friends!" />
<meta property="og:updated_time" content="1436786566" />
<meta property="og:url" content="http://clioco.cobuydev.com/cobuys/clioco-make-up-bundle" />
<meta property="og:locale:alternate" content="fr_FR" />
<meta property="og:locale:alternate" content="fr_CA" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:locale" content="en_GB" />
<meta property="og:image" content="https://res.cloudinary.com/hp0f8ghfo/image/upload/v1429186395/ibawbi5rfdjwebcqf8er.png" />
因此,在使其正常工作后,我一直在尝试从facebook帐户共享此链接,该帐户的主要语言设置为fr_CA,但生成的卡仍然是英语

我也无法使用调试器()在fr_CA中测试它的呈现

有人能告诉我我错过了什么吗?(如果我遗漏了什么:D)


非常感谢

在回答我们自己的问题时,我们在一份Facebook bug报告中讨论了这一点,经过反复讨论,得出了与@CBroe评论相同的结论

这是不可能的


有关更多信息,请参见

此功能目前仅适用于开放式图表故事–对于普通文章,不支持此功能。(这已经被FB开发者组的一名Facebook员工证实了。)非常感谢!文档中没有指定这一点:)旁注:您确实意识到
og:ttl
metatag值以秒为单位,您将其设置为120秒。
<meta property="og:ttl" content="120" />
<meta property="og:type" content="website" />
<meta property="og:title" content="FR Clioco Make Up Bundle" />
<meta property="og:description" content="FR FR FR FR The more people who take part in FR Clioco Make Up Bundle&#39;s giveaway, the more free stuff
everyone gets. So sign up now and tell your friends!
" />
<meta property="og:updated_time" content="1436786566" />
<meta property="og:url" content="http://clioco.cobuydev.com/cobuys/clioco-make-up-bundle" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:locale:alternate" content="fr_CA" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:image" content="https://res.cloudinary.com/hp0f8ghfo/image/upload/v1429186395/ibawbi5rfdjwebcqf8er.png" />