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 a Facebook App, and once a user as completed the App, I want them to invite their friends. Once they have invited their friends, I want automatically take them to a page that will say "Thank you for inviting your friends, come back soon". Here is the code I am using to display the invite friends dialog.

   <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>
  <script type='text/javascript'>
  if (top.location!= self.location)
  {
    top.location = self.location
  }
  </script>

  <div id="fb-root"></div>
  <a href='#' onclick="FacebookInviteFriends();"> 
  Facebook Invite Friends Link
 </a>
share|improve this question
So? Use the callback parameter (called cb in the dos) to pass a function that shall handle the return from the dialog. – CBroe Jan 30 at 15:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.