I have the following code displaying the request dialog. The function sends the requests to the users I select but the problem is that it DOES NOT RETURN THE SELECTED USERS IDS
$('#request_btn').click(function(){send_request()});
function send_request()
{
var message = 'Bla Bla';
var title = 'Bla Bla'
FB.ui({
method: 'apprequests',
message: message,
title: title,
max_recipients: 20
},
function (response)
{
if (response && response.request_ids)
{
alert('success')
}
});
return false;
}