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.

I'm trying to install the fb multi friend selector using javascript SDK following this link :

http://developers.facebook.com/docs/reference/dialogs/requests/

My question is : when i call the function :

function sendRequestViaMultiFriendSelector() { FB.ui({method: 'apprequests', message: 'My Great Request' }, requestCallback); }

Its open a pop up with all my friend and send a message but when i go to Facebook and open this notification it open a wrong url : http://mydomain.com/?request_ids=448697108486876&ref=notif&app_request_type=user_to_user

So i wanted to know if it was possible to open a friend selector pop up and send a private message or a simple message on the wall to all friend users ? There is an existing code for that ? or i must develop my own code with Javascript SDK ? Thanks you.

share|improve this question

1 Answer

Yes, you can use the send dialog, if you had a multi friend selector and then the callback sent the array of selected friends to another function then you can call th send dialog, and put the callbacked users into the "to" field:

function sender(users_array) {    
  FB.ui({
      method: 'send',
      name: 'Name',
      to: users_array,
      link: '<Some_URL>',
  });
}

https://developers.facebook.com/docs/reference/dialogs/send/

share|improve this answer
thanks for the answer, but it doesn't works.. it works only for the first id user in the array. – AppliCiné Cinéma Aug 16 '12 at 8:39

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.