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.

When users invite friends to my Facebook application with e.g. fb:multi-friend-selector, how can the application get a list of friends (uids) the user just invited? My application has internal "groups" and I need to connect the invites to these groups and therefore have this possibility.

We all know Facebook's documentation isn't very verbose and I've spent some considerable time researching this to no avail yet. Creative ideas to solve my problem are also appreciated.

share|improve this question
Actually the multi-friend-selector provides the selected users in a call-back url. – Kyberias Jul 24 '10 at 10:43

2 Answers

up vote 2 down vote accepted

Kyberias is correct, however a bit more information is good.

One of the attributes for <fb:request-form> (which must surround the <fb:multi-friend-request>) is action. This is the URL where the form will POST the data, and in that request will be an array of invited user ids, named 'ids'.

http://developers.facebook.com/docs/reference/fbml/request-form

share|improve this answer

Actually the multi-friend-selector provides the selected users in a call-back url.

share|improve this answer

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.