0

在我的网站上,我有一个 facebook like 按钮(喜欢我的 facebook 页面)。直到今天它一直运行良好。当有人点赞按钮时,它喜欢该页面,然后立即切换到以前的不喜欢该页面的模式。在我的主页上,我收到此错误

There was an error liking the page. If you are the page owner, please try running your page through the linter on the Facebook devsite (https://developers.facebook.com/tools/lint/) and fixing any errors.

我试图扫描我的页面,但没有任何错误或警告。我还尝试在这里制作一个新的点赞按钮,https://developers.facebook.com/docs/reference/plugins/like/ 但是对于我尝试过的每个页面(甚至不是我的页面),例如(http://www.facebook.com/americanexpress)我仍然遇到同样的问题(您可以在 facebook 上看到问题,而无需将代码粘贴到您的页)。facebook是否更改了任何代码或其他内容?我是否需要更改任何代码,例如我的 java 脚本?

4

1 回答 1

0

试试这个:

<div class="fb-like" data-href="https://www.facebook.com/ILoveItWhenGirlsLookAtTheirOwnBoobs" data-send="true" data-layout="button_count" data-width="450" data-show-faces="true"></div>

它在我的博客上正常工作。你可以在这里查看我的博客:

http://mostvisitedbloginasia.blogspot.com/

对于您的页面,只需更改页面的用户名。看起来像:

<div class="fb-like" data-href="https://www.facebook.com/YOUR-USER-NAME" data-send="true" data-layout="button_count" data-width="450" data-show-faces="true"></div>

它将正常工作!

于 2012-09-21T04:02:13.033 回答