My online game site uses Facebook as one of authentication backends.
I am using fb:request-form to allow a user to invite friends to the site. But if a friend has already joined, instead of a Facebook notification I want to send an in-game message.
Is it possible to get a list of selected userids without sending messages?
fb:request-form. Your best bet is to filter out friends that have already joined, and make the message a 2nd option. Or you could try deleting the sent requests (I don't remember if this is possible anymore) if they were sent to existing users. Edit: Or you can create your own form/dialog system that does exactly what you want - considerably more work though. – Antonelli Aug 30 '11 at 14:51