Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to redirect users to the oauth page if they have removed any of the permissions my app requires.

For some reason the below code results in an endless loop when I try to redirect from the FB.api callback function. Any ideas how I can fix this?

var perms           = ['publish_actions', 'email', 'user_birthday', 'user_location'],
    permsString     = perms.join(','),
    permissionsUrl  = 'https://www.facebook.com/dialog/oauth';
    permissionsUrl  += '?client_id=' + config.facebook.appId;
    permissionsUrl  += '&redirect_uri=' + encodeURI(canvasUrl);
    permissionsUrl  += '&scope=' + permsString;

    FB.getLoginStatus(function (response) {

        if (response.status === 'connected') {

            FB.api('/me/permissions', function(response) {

                // using underscore here...
                var keys = _.keys(response.data[0]),
                    diff = _.difference(perms, keys);

                // send the user through the auth again if they've removed any of the perms we need
                if (diff.length) {

                    window.location.href = permissionsUrl; // results in an endless redirect loop
                    // window.location.href = 'http://randomwebsite.com'; // does redirect successfully!!!!
                }
            });
        }

    }, true);
share|improve this question
through trial and error I found that wrapping the redirect in a named function outside of the callback and then invoking this in the callback seemed to do the trick – techjacker Apr 17 '12 at 6:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.