facebook Open Graph Object Debugger出错

时间:2015-04-02 04:38:21

标签: facebook facebook-graph-api

我收到错误: 来自Open Graph Object DebuggerObject at URL 'http://quaaoutlodge.com/content/fashion-show' of type 'website' is invalid because the given value 'QuaaoutLodge' for property 'fb:app_id' could not be parsed as type 'fbid'.,而我的html中的元标记如下所示:

<meta property="fb:app_id" content="QuaaoutLodge" />
<meta property="fb:admins" content="Ron Eggler" />

这里的问题是什么?

1 个答案:

答案 0 :(得分:1)

如上面的评论所述,您的OG元标记不正确。您应该按如下方式指定它们:

<meta property="fb:admins" content="1234" />
<meta property="fb:admins" content="5678" />
<meta property="fb:app_id" content="123456789" /> 

假设&#39; 123456789&#39;是您的Facebook应用ID(您在此处查看:https://developers.facebook.com/apps/)和&#39; 1234&#39;和&#39; 5678&#39;是有效的用户ID。

**用于&#34; fb:admins&#34;标签,请注意您应该为每个管理员指定一个。