In my facebook application, I need an option, where users can add or remove the friends from a group. I see the

But all the samples I see only provides the option to send invite to application.

Is there any way to capture the selected ids from the control and perform the operation I need to do (add or remove the users from the group)

Any help is highly appreciated.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 0 down vote accepted

What about programming your own interface for selecting friends? Just execute this FQL query:

select uid,first_name,middle_name,last_name,pic_square from user where uid in (SELECT uid2 FROM friend WHERE uid1 = me())

Of course you can get other fields: http://developers.facebook.com/docs/reference/fql/user/

Once you get the list, you can build your own interface.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.