In any facebook api (connect, graph, rest, etc) is there a way to prompt the user to become a fan of a page (now known as liking a page).

link|improve this question

47% accept rate
feedback

3 Answers

<iframe frameborder="0" scrolling="no" allowtransparency="true" style="border: medium none; overflow: hidden; width: 150px; height: 20px;" src=" http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.yoursiteurlencodedhere.com&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=dark&amp;height=80"></iframe>

Take note of the: http%3A%2F%2Fwww.yoursiteurlencodedhere.com section.

link|improve this answer
feedback

It is not possible through the Facebook APIs. Above iframe solution might work.

link|improve this answer
feedback

Here's the details for adding a Facebook like button.

http://developers.facebook.com/docs/reference/plugins/like/

You can use the iframe method:

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

Or you can use the xfbml method:

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like show_faces="true" width="450"></fb:like>

Personally I think the xfbml method is cleaner. Unfortunately this doesn't actively prompt the user, it merely adds the button to your page. There is no way in their api to prompt someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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