FB.Connect.showPermissionDialog('status_update,offline_access', function(perms)
{
if(!perms)
return callback(false);
else
return callback(true);
});
How do I check multiple permissions at the same time? The above code works only for status_update and its not checking offline access.