Invite facebook friends with multi friend selector

577 Views Asked by At

To invite friends in facebook I used following code

            FB.init({
               appId:'APP_ID',
               cookie:true,
               status:true,
               xfbml:true
             });

            function FacebookInviteFriends()
              {
                 FB.ui({
                 method: 'apprequests',
                 message: 'Your Message diaolog'
                  });
              }

Its giving as shown belowsee here

But what I need is click here to see


How can I get it.

1

There are 1 best solutions below

0
On
FB.ui({
   method: 'apprequests',
   message: 'Your Message diaolog',
   to: 'uid1,uid2'
});