The idea is that the user can request feedback on what they have done from several friends.
I have a friends selector that works great.
From here I get user IDs. Then I call the send dialog, and instead there are several recipients, there is only one. Does anyone know why?
FB.ui({ method: 'send', name: 'Test', to: formattedContacts, link: 'http://google.com' });
If I enter formattedContacts format, I get the following. (id deleted)
["11111", "222222"]
The send dialog is displayed in order, but only the first users are displayed as the recipient.
Does anyone know how to open a dialog with multiple recipients?
source share