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 improve my request dialog multi selector.

This is the actual dialog request of my application:

enter image description here

But I have seen others request dialog here:

enter image description here this request dialog select automaticly 50 friends.

How I can do it?

This is my actual dialog code:

<script>
  FB.init({
    appId  : '290349771061160',
    frictionlessRequests: true,
  });

  function sendRequestToRecipients() {
    var user_ids = document.getElementsByName("user_ids")[0].value;
    FB.ui({method: 'apprequests',
      message: 'SELEZIONA 25 AMICI',
      to: user_ids, 
    }, requestCallback);
  }

  function sendRequestViaMultiFriendSelector() {
    FB.ui({method: 'apprequests',
      message: 'SELEZIONA 25 AMICI'
    }, requestCallback);
  }

  function requestCallback(response) {
    // Handle callback here
  }

  function requestCallback(response) {

    if((response != null) &&(response != false))
    {
      alert('ADESSO CLICCA IN ALTO A DESTRA SU MI PIACE');
    }
    // Handle callback here
  }
</script>
share|improve this question
1  
The Requests dialog has an optional to parameter, see docs: developers.facebook.com/docs/reference/dialogs/requests. It’ll take a list of comma-separated user ids. – CBroe Aug 4 '12 at 13:42

1 Answer

Requests Dialog allow you to specify to which friends you want the request to be sent by specifying comma separated friends ids in to field (see direct request) (this is exactly what you can see on second picture).

The only difference between first and second is the to parameter which is empty for first one and filled for second.

share|improve this answer
Ok but in the second picture how the app insert the ids? – Bed E Breakfast Italia Aug 4 '12 at 14:59
It may be something simple like random N friends or something more complicated filtering of list of friends (from either Graph API /me/friends?fields=id or FQL) – Juicy Scripter Aug 4 '12 at 19:08

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.