I want to send app requests only to friends that are online...So I only want to list friends that are online using fb apprequests. is this possible?
$('#sendRequest').click(function() {
FB.ui(
{
method : 'apprequests',
message : $(this).attr('data-message'),
data: sessionId,
max_recipients: '1'
/* filters: ['all'],*/
},
function (response) {
// If response is null the user canceled the dialog
if (response != null) {
logResponse(response);
}
}
);
});