我知道这是一个常见的问题,但我没有找到任何答案。我点击按钮但没有任何反应。我一直在使用linter并拥有所有的og标签。
这是我的代码(直接来自类似按钮创建者)和网站:
<iframe src="//www.facebook.com/plugins/like.php?href&send=false&layout=button_count&width=450&show_faces=true&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>
http://alexcieminski.com/index.html
谢谢。
答案 0 :(得分:1)
?href&
这就是问题所在。您需要在此处真正放置您的网址编码网址:?href=%3A%2F%2F&
同时在linter中查看您的页面:http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Falexcieminski.com%2Findex.html
它说你也应该指定og:description。
答案 1 :(得分:0)
你需要删除所有'amp;'将查询字符串分开。所以,而不是'&amp;'将每个查询字符串分开,你应该只有'&amp;'。你也没有任何关于'href'
的网址答案 2 :(得分:0)
我在过去的4个小时内遇到了这个问题。它原来是一个浏览器相关的问题。在我开始接受来自http://www.facebook.com/的第三方Cookie之后,每件事情都开始起作用了......