Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a problem by generating a like button.

I want to put a like button on each page of my website. I haven't any problem to do it. But, i can like the button on my website and i can like posts on facebook linked with my website (by adding the URL of a page) too, with the same Facebook account ! if I do so, the button on my website will count 2 likes. So, it could be possible to have an infinite number of likes by creating an infinite number of posts and by liking them.

But, I want to create unique button like with only ONE like per facebook account : in order to see customers' preferences.

Btw, sorry for my english mistakes..

You 'll see below my html/PHP code :

<?php $monUrl = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?> 

<iframe src="//www.facebook.com/plugins/like.php?href=<? echo $monUrl; ?>&amp;send=true&amp;layout=button_count&amp;width=50&amp;show_faces=false&amp;font=arial&amp;colorscheme=light&amp;action=like&amp;height=35&amp" 
        scrolling="no" 
        frameborder="0" 
        style="border:none; overflow:hidden; width:450px; height:35px;"
        allowTransparency="true">
</iframe>
share|improve this question
Take a look at your site in the [Facebook Debugger](developers.facebook.com/tools/debug) and see if it reports a different canonical url than your page. If so, eliminate that declaration from your <head>. – cpilko Feb 8 at 20:52

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.