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.

Is it possible to display a Facebook friend invitation form on a website (not Facebook embedded app), where a user can select some friends, then we can send them some kind of notification or message with a custom link?

I've found a related question at http://stackoverflow.com/questions/2276115/how-to-invite-friends-from-facebook-from-my-website but the link in the answer points to a non-existent page. Can someone show me some docs or example implementation?

share|improve this question

2 Answers

up vote 2 down vote accepted

It is possible. You can find an example here.

It gets a little more difficult if you want to show invite form after initial page load (on button click for example). You can find a solution in this question.

share|improve this answer
2  
I get a "Page Not Found" for the first link – Leventix Oct 18 '10 at 17:17
@Leventix Strange. Then go to fbrell.com , click on examples button below and select "xfbml — fb:server-fbml-multi-friend-selector" – serg Oct 18 '10 at 17:32

invite facebook friend from your website,use this small lines of code and send invitation to all facebook friends to visit your website.i also used this script its working nicely. your domain must be ssl certified because facebook not allowing unsecured domains.

<script src="http://connect.facebook.net/en_US/all.js"></script>

<script>
FB.init({
appId:'APP_ID',
cookie:true,
status:true,
xfbml:true
});

function FacebookInviteFriends()
{
FB.ui({
method: 'apprequests',
message: 'Your Message diaolog'
});
}
</script>


//HTML Code
<div id="fb-root"></div>
<a href='#' onclick="FacebookInviteFriends();"> 
Facebook Invite Friends Link
</a>

add this below code to your website main page..

<script type='text/javascript'>
if (top.location!= self.location)
{
top.location = self.location
}
</script>

for more detail you can check:- http://www.9lessons.info/2012/07/facebook-invite-friends-api.html

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.