I have problem with apprequests and ['app_non_users'] filter. Code:
window.fbAsyncInit = function() {
FB.init({appId: '123', status: true, cookie: true, xfbml: true});
}
function sendRequestViaMultiFriendSelector() {
FB.ui({
method: 'apprequests',
filters: ['app_non_users'],
message: 'Hello there!'
}, function callback(response) {
if (response) {
//do some stuff
}
});
}
And as you might guess facebook displays all friends (even those already using the application). Any suggestion?
Thanks!
filters: ['app_non_users','all']
– Peek