Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Don't use test.com if that is not your domain! And please work on your accept rate. Also, I don't understand your problem. Please provide more information. – Bram Vanroy Jan 22 at 11:54
Try using the linter developers.facebook.com/tools/debug – phwd Jan 22 at 12:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.