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 use this function that prompts the end user to choose multiple friends to invite:

 function sendRequest() {
        FB.ui({
            method: 'apprequests',
            message: 'Check out this application!',
            filters: ['app_non_users'],
            title: 'Send your friends an application request',
        }

This works preety good, But i want to limit the number of friends the user can invite in the popup facebook ui. How can i accomplish this?

share|improve this question

1 Answer

request_ids = FB.ui({
   method: 'apprequests',
   access_token: '<?php echo $_SESSION['facebook_access_token']; ?>',
   display: 'iframe',
   max_recipients: '5',
   message: 'message', 
   data: 'data' });
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.