I am using the following way to open a multi-friend selector
<script type="text/javascript">
FB.init({
appId: '12233456734',
frictionlessRequests: true
});
function sendRequestToRecipients() {
var user_ids = document.getElementsByName("user_ids")[0].value;
FB.ui({ method: 'apprequests',
message: 'My Great Request',
to: user_ids ,
display: 'popup'
}, requestCallback);
}
function sendRequestViaMultiFriendSelector() {
FB.ui({ method: 'apprequests',
message: 'My Great Request'
}, requestCallback);
}
function sendMessage() {
FB.ui({
method: 'send',
name: 'Join Camtista and get your questions answered',
});
}
function requestCallback(response) {
// Handle callback here
if (response.request && response.to) {
var request_ids = [];
var temp="temp value: ";
for(i=0; i<response.to.length; i++) {
temp = temp + response.request + '_' + response.to[i]+" ; ";
request_ids.push(temp);
}
var requests = request_ids.join(',');
document.getElementById("Label1").value = temp;
} else {
alert('canceled');
}
}
I am using sendRequestViaMultiFriendSelector() method to open a multi-friend selector. However, I am having 2 problems with this
1) It shows up only once. After that, my button doesn't work. I should clear the cache from the browser and then the button works again. Why is it doing that ? How do I make the button work normally ?
2) I tried to get the friends id's whom the requests are sent to in the requestCallback() method above. That code is not working for some reason. The label value is always blank. Could you please tell me how to parse it ? I know it gives friend id's but I need to get their email addresses and facebook profile pic too.
I am using asp.net and java script