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.

We use the iframe implementation of the Like button on our "Junkdrawer" section of the site. Currently it is working fine on 95% of the posts in that category. However, our video content is not being tracked correctly, let me explain. The Like button shows up, you can click it, it registers 1 like, and that like is shared on your Facebook page...come back to the page though and that 1 is gone, and no likes are actually counted, they are shared, just not counted. I tried linting the URL and that appears fine, any suggestions? Here is an example page where the likes are not being counted.

http://www.thrashermagazine.com/component/option,com_hwdvideoshare/Itemid,90/lang,en/task,viewvideo/video_id,1311/

EDIT: Thanks for the help below, I get that the url that the "Like" button is using is different then the active URL in the browser, these are permalinks. Also the following link shows that Facebook has recieved the likes, it is just not posting them to the button itself? https://api.facebook.com/method/fql.query?query=select%20total_count,like_count,comment_count,share_count,click_count%20from%20link_stat%20where%20url='http%3A%2F%2Fwww.thrashermagazine.com%2Findex.php%3Foption%3Dcom_hwdvideoshare%26task%3Dviewvideo%26Itemid%3D90%26video_id%3D1311'&format=json

share|improve this question

closed as off topic by svick, Jeff Atwood Oct 6 '11 at 8:33

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

The Like button points to:

 http://www.thrashermagazine.com/index.php?option=com_hwdvideoshare&task=viewvideo&Itemid=90&video_id=1311

which redirects to

 http://www.thrashermagazine.com/component/option,com_hwdvideoshare/Itemid,90/lang,en/task,viewvideo/video_id,1311/

Try having the Like button point to the actual final page URL -- the redirect might be affecting the count.

share|improve this answer
Thanks for the heads up! I have tried that however older videos such as this one: thrashermagazine.com/… do the same thing and the like count works on them, this has only been occuring the last 1-1.5 weeks? did the api change that much to warrant a change in code? Also the reason we use that url is it is Permalinked so regardless of which SEF Generator we are using, the comments and likes stay the same...Is their a better solution? – Nick Lattner Oct 5 '11 at 21:46

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