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 have developed a Facebook application in which every user uploads or provides a link to a YouTube video.

I want to list all the uploaded videos on a page along with a like button for each video.

Can any one guide me how to embed like button for more than one uploaded video.

share|improve this question

1 Answer

up vote 1 down vote accepted

Manually Create FB Like link e.g.

<div class="fb-like" data-href="http://www.domain.com/video.php?123" data-send="true" data-width="350" data-show-faces="false" style="margin-left:5px;"></div>

Create a page video.php and place this code

<script language="javascript">
window.location.href='http://www.facebook.com/pages/facebook_page_name/page_id?sk=app_XXX';
</script>
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.