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 this piece of code that works perfectly when inviting friends,

<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>

how can I set the minimum number of friends invites in order for the dialog to close?

thanks.

share|improve this question

closed as not a real question by Igy, phant0m, ЯegDwight, Brian Mains, dreamcrash Dec 10 '12 at 1:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Making it a requirement to invite friends to move further into a facebook application is strictly forbidden by policy and, in all honesty, they'll just be marked as spam. Enough of that will get your app removed.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.