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>
cbin the dos) to pass a function that shall handle the return from the dialog. – CBroe Jan 30 at 15:33