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.

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?

share|improve this question
You can't perform multiple actions with a single 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

1 Answer

Just check if user exists in your game already. If yes, send him message instead of invitation.

Use powers of AJAX

share|improve this answer
I don't receive any callbacks from the Facebook iframe until the messages have been already sent. – grep Aug 30 '11 at 11:57

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.