我正在尝试将使用 XFBML 的 Facebook Like 按钮放在我的Blogger博客中。我希望它为每篇文章显示不同的按钮,而不是所有博客的按钮。
我已遵循此链接中的指南,其中包括:http ://hitech-tips.blogspot.com/2010/05/facebook-like-button-xfbml-tutorial.html
发生的事情是显示了“赞”按钮,但所有帖子的按钮都完全相同。我读过使用 expr:href='data:post.url' 应该可以解决这个特定问题,但由于某种原因这不起作用。这是所有相关的代码,我希望你们能告诉我我做错了什么。
<code>
// XFBML declaration
<html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr' xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraphprotocol.org/schema/'>
// Opengraph tags (in head)
< b:if cond='data:blog.pageType == "item"'>
< meta expr:content='data:blog.pageTitle' property='og:title'/>
< meta expr:content='data:blog.url' property='og:url'/>
< b:else/>
< meta expr:content='data:blog.title' property='og:title'/>
< meta expr:content='data:blog.homepageUrl' property='og:url'/>
< /b:if>
< meta content='blog' property='og:type'/>
< meta content='http://lh5.ggpht.com/_4b9fZK142hk/TFHpg-2YeBI/AAAAAAAAEVM/MXLyeL6dvmk/TV%20512x512.jpg' property='og:image'/>
< meta content='La guía de cine y series' property='og:site_name'/>
< meta content='MY PROFILE ID IS HERE' property='fb:admins'/>
< meta content='MY APP ID IS HERE' property='fb:app_id'/>
< meta content='La guía de cine y series es un blog en español sobre series de TV y películas. Podés encontrar todo tipo de información sobre series de TV y películas: noticias, reviews, previews, trailers, posters y etc.' property='og:description'/>
< meta content='Ciudad Autónoma de Buenos Aires' property='og:locality'/>
< meta content='Ciudad Autónoma de Buenos Aires' property='og:region'/>
< meta content='Argentina' property='og:country-name'/>
< meta content='MY EMAIL' property='og:email'/>
// FB Init (in body)
< div id='fb-root'/>
< script>
window.fbAsyncInit = function() {
FB.init({appId: 'MY_APP_ID', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
< /script>
// And finally the like button, in the post footer.
< div class='post-footer-line post-footer-line-3'>
< div style="margin-top:10px; margin-left:5px;">
< fb:like action='like' colorscheme='light' expr:href='data:post.url' layout='standard' show_faces='true'/>
< /div>
< /div>
</code>
我还在blogspot.com
Facebook 应用程序设置中设置了基本域,连接 URL 是以斜杠结尾的博客 URL。