invite a friend of facebook from your application or website, use this small line of code and send an invitation to all friends from Facebook to visit your site. I also used this script that works well. your domain must be ssl certified because facebook did not allow 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 code below to the home page of your site.
<script type='text/javascript'> if (top.location!= self.location) { top.location = self.location } </script>
for more details you can check: - http://www.9lessons.info/2012/07/facebook-invite-friends-api.html
source share