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.