I have a page tab app that was originally built to be totally open, now requires certain permissions from those who install it (page admins).
I've run into a rather unique problem now that we want to get permission from the installer so that the app can post to their page wall (not their personal timeline). These are the issues:
The app is only to ask for permission from user's who install the app. Not people who are simply viewing it. Easy to work out with the is_admin flag. What I need to work out when I know it's an admin user, is if the app permissions granted by the current facebook user match those requested by the app WITHOUT using FB.login.
This a page tab app. I don't want the dialog to be shown, I want to redirect the user to the facebook permissions page if the app is not authorized at all. If there is a limited number of permissions that are not given by the user, but also not manditory, I want to display a message in the app itself.
Working the JS SDK, I have this so far and it is working, but I am stuck at the FB.api('/me/permissions' part. I can get the user permissions for the app. But I'm not quite sure how to compare them to what the app requires.
// Initialize the facebook object
FB.init({
appId: app_id, // From the globals set up at the top of this page
channelUrl : channel_url,
cookie: true,
xfbml: true,
oauth: true,
status: true
});
$(document).trigger("facebook:ready");
/**
* Handle permissions for the current facebook user. There are several possible scenarios
* 1. If current user is not the page admin, they are treated as a customer, so no further action is taken
* 2. If the user is page admin, but the app is not authorized at all, always redirect the user to the Facebook permission grant page (this is most commonly a new user)
* 3. If the user is page admin, the app is authourized, but not all permissions are available to the app, we will not force the user to giving all permissions but simply
* notify the user that they are missing out on features and provide a link to allowing the extra permissions to the app.
*/
if(is_admin) {
console.log('Current user is Admin');
FB.getLoginStatus(function(response) {
if(response.status == 'not_authorized') {
console.log('User has not authourized the app. FORCED Redirect to permission page');
} else if(response.status == 'connected') {
console.log('App is authorized. Check permissions');
FB.api('/me/permissions', function (permissions) {
console.log(permissions);
});
}
});
} else {
console.log('Current user is NOT admin. Allow to view with no further action');
}