1

我在使用我网站上的 Facebook 赞按钮时遇到问题。当用户单击“赞”按钮时,它会做所有正确的事情,除了发布到他们的墙上。我想我已经把它缩小到我的 fb:admins id 因为在 Facebook 调试器上给了我这个警告:

'website' 类型的URL ' http://www.eductorcorkboard.com ' 上的对象无效,因为属性 'fb:admins' 的给定值 'educatorcorkboard' 无法解析为类型 'fbid'。

我知道我的 id 是正确的,因为我的 Facebook 页面是https://www.facebook.com/educatcorkboard

我的元标记如下:

<meta property="fb:admins" content="educatorcorkboard"/>
<meta property="og:title" content="Free Math Worksheets"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://www.educatorcorkboard.com"/>
<meta property="og:image" content="http://www.educatorcorkboard.com/Banner2.jpg"/>
<meta property="og:site_name" content="Educator Corkboard"/>
<meta property="og:description" content="Educator Corkboard is a site for math teachers to     find worksheets, activities, and games for secondary mathematics."/>

如果有人可以帮助我解决此问题,以便将其发布到用户墙上,我将不胜感激。我已经查看了有关同一问题的许多其他问题,但我尝试过的一切都没有奏效。

4

2 回答 2

1

fb:admin 不应包含随机代码,而是您的(内部)facebook-id。

转到http://www.facebook.com/insights并按下绿色的“您网站的统计信息”按钮。然后你会看到 fb:admin 标签在你的情况下应该是怎样的。

于 2013-10-04T18:47:24.897 回答
0

"fb:admins" must be your fb profile id ( not your fb profile name or your fb fanpage id ) You can get the fb profile id at https://graph.facebook.com/xxx. Change xxx to your profile name. Find property "id"

Debug at https://developers.facebook.com/tools/debug/

于 2014-06-25T10:00:29.313 回答