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.

When I click my Like button, it does add the activity to my FB (per screenshot) but the count stays at zero (also per screenshot), why?

I've checked the Linter tool and everything looks to be fine.

The site is www.FindCuro.com

enter image description here

Here is my code (MVC)

<script src="http://connect.facebook.net/en_US/all.js#appId=@ConfigurationManager.AppSettings["FacebookAppId"]&amp;xfbml=1" type="text/javascript"></script>

<div id="fb-root"></div>
<div class="fb-like" data-href="http://www.findcuro.com" data-send="false" data-width="450" data-show-faces="true" data-layout="button_count"></div>

Thanks

share|improve this question
It's better for you and community to ask "bonus" question as a separate question! ;) – Juicy Scripter Sep 23 '12 at 6:50
Please give us your current code. – Daedalus Sep 23 '12 at 6:53
Is your application is sandboxed? Does user viewing this activity have access to application? Any chances "Piter" is a test user? – Juicy Scripter Sep 23 '12 at 6:54
Will do. I thought about doing that originally but then I feel like I would be asking too many questions :) – FeatureCreep Sep 23 '12 at 6:54
Sandbox mode is disabled. Peter is an Administrator. I've viewed the page from other browsers when I'm not logged in and even on other PCs but they all show 0 likes. I will post code. – FeatureCreep Sep 23 '12 at 6:56
show 5 more comments

2 Answers

up vote 0 down vote accepted

The problem is the like button.

<div class="fb-like" data-href="http://www.FindCuro.com" data-send="false" data-width="450" data-show-faces="false" data-layout="button_count"></div>

You shouldn't be using "FindCuro.com" (note the capital letters)

If you check https://graph.facebook.com/http://www.FindCuro.com/ you'll see two shares If you check https://graph.facebook.com/http://www.findcuro.com/ you won't see any shares

Facebook is checking the second one.

try all lowercases.

share|improve this answer
& JuicyScripter Thanks guys. It was a case problem. Why doesn't FB call that out in the Linter, or like button docs, or in the OpenGraph metta tag documentation? I read all that thinking I was doing my due diligence. Once I knew what I was looking for, I see that FB does have documentation talking about it but not nearly as prominent as it should be. Thanks again! – FeatureCreep Sep 24 '12 at 2:43

The issue is related to the fact that page located on URL you using for like button have Canonical URL that cannot be resolved due to cyclical redirects: http://www.FindCuro.com/ (See output of Debug tool for initial URL and the one for Canonical URL)

Provide lowercase Canonical URL in the OpenGraph meta tags should solve the issue.

BTW, If you'll use standard layout for Like Button you will probably see error message while liking with user who is admin of application. Also activity story about liking page is sent regardless of real like number increase.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.