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.

How I can use

FB.ui({
      method: 'apprequests',
      message: 'Gooby pls'
}, requestCallback);

to send a request for my app ONLY to friends that have not received a request yet?

share|improve this question

1 Answer

up vote 2 down vote accepted

If you have a database of some kind of who's got requests from who (probably already has), you can use the request dialog's exclude_ids field to remove them from the list. Just list the user ids:

 FB.ui({
     method: 'apprequests',
     message: 'Gooby pls',
     exclude_ids: ['42'] // add real facebook user ids here
}, requestCallback);
share|improve this answer
Oh thank you very much! Perfect! In this way I can pass an array! :D – Pizzirani Leonardo Aug 2 '12 at 15:42

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.