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 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);
          }
        }
      );
    });
share|improve this question
Maybe a previous answer of mine on a similar topic helps a little: facebook.stackoverflow.com/questions/11968241/… – CBroe Aug 27 '12 at 8:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.