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 want to integrate an invite friends from facebook option like how foursquare have implemented it. I checked out the fb:Request form but wasn't able to run it successfully. Plus I heard theyre deprecating the legacy FBML library so is there any better way of doing this?

I'm working in php here.

share|improve this question

1 Answer

up vote 5 down vote accepted

The Facebook requests dialog has replaced it. It uses the Facebook javascript SDK.

Full example (click here to run it on jsfiddle):

<!DOCTYPE html>
<html>
<body>
<div id="fb-root"></div>
<a href="#" onclick="sendRequests();return false;">Invite your friends</a>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({ appId: '**yourAppId**', status: true, cookie: true, xfbml : true });

  function sendRequests() {  
    FB.ui({method: 'apprequests', message: 'You should learn more about this awesome site.', data: 'tracking information for the user'}, 
    function(response) {
        if (response != null && response.request_ids && response.request_ids.length >0) {
          for(var i = 0; i < response.request_ids.length; i++) {
            alert("Invited: " + response.request_ids[i]);
          }
        } else {
          alert('No invitations sent');
        }
    });
}
</script>
</body>
</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.