I am using facebook like button in struts 2 app. I want to like individual article,here the URL generates : http://test.com/articles/ArticlesContentAction.action?artId=48 ,based on article id. I tried XFBML version of like button because it by default like current url according to facebook like plugin plugin link but it not working for me.I also found some jQuery based solution link but not able to find solution.So please share you view on this problem.
My code: I placed this code just after the body tag .
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=241562345966486";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
like button code:
<fb:like send="false" layout="button_count" width="80" show_faces="false"></fb:like>
put in HTML tag :
<html xmlns:fb="http://ogp.me/ns/fb#">
When I click on a like and it changes to liked and then is unliked again.