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?