I want to send the App req to 5 people , i have managed to get the UserID's of 5 people but its always those same 5 people , isnt there a way to randomise the USERID's
which i get from Facebook ?
<script>
var profilePicsDiv = document.getElementById('profile_pics');
FB.getLoginStatus(function(response) {
FB.api({ method: 'friends.get' }, function(result) {
Log.info('friends.get response', result);
var user_ids="" ;
var numFriends = result ? Math.min(5, result.length) : 0;
if (numFriends > 0) {
for (var i=0; i<numFriends; i++) {
user_ids+= (
',' + result[i]
);
}
}
profilePicsDiv.innerHTML = user_ids;
alert(user_ids);
});
});
function sendRequestToRecipients() {
var user_ids = document.getElementsByName("user_ids")[0].value;
FB.ui({method: 'apprequests',
message: 'My Great Request',
to: user_ids, /// How to Fill the ID's HERE ?
}, requestCallback);
}
</script>