Created
August 30, 2011 14:22
-
-
Save ashaw/1181004 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hasPermission = function(uid, cb) { | |
// are we allowed to publish to the user's wall? | |
var perm = "publish_stream"; | |
var query = FB.Data.query('select ' + perm + ' from permissions where uid={0}', uid); | |
query.wait(function(rows) { cb(rows[0][perm]); }); // returns 1 or 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment