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'm making a site which has a list of videos. Next to each video in the list I want a like button. My like button code looks like this:

<div class="fb-like" data-send="true" data-layout="button_count" data-width="100" data-show-faces="false"></div>

And the URL of the page is

http://dev2-rs-www.doubledip.com/video-play/?vid=aj5pbnNlcnRlZC1mcm9tLXRleHQtaW4tYnVpbGQtZGVwbG95LWFwcGxpY2F0aW9uaWQtb24tZGVwbG95bWVudHIkCxINQWNjb3VudFJlY29yZBgBDAsSC1ZpZGVvUmVjb3JkGAkM

However, the link on my wall is http://dev2-rs-www.doubledip.com/video-play/ without the ?vid= parameter. I also tried adding the data-href attribute, but that didn't do anything. How can I fix this?

share|improve this question

2 Answers

up vote 1 down vote accepted

Your problem lies with the misuse of the <link rel='canonical'> element. On the video page, it links to the page without the ?vid parameter, causing it to use that as the final value. Change it to the actual page and it should work fine.

share|improve this answer
You were right. I didn't have the full link in my canonical link tag. That that seemed to fix the problem. – user1084826 Dec 7 '11 at 5:10
@echeese, pls see my question stackoverflow.com/questions/16059918/… – illDev Apr 17 at 13:08

Facebook like buttons doesnt use parameters in url. User this: http://developers.facebook.com/tools/lint/ to check for info and errors

share|improve this answer
Thanks, that was a useful tool. – user1084826 Dec 7 '11 at 5:08

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.