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.

How do I check if the user has already allowed your application to publish on his stream (to avoid the momentarily popup menu). Currently I'm simply using this JavaScript code:

<script>
    <!--
        Facebook.showPermissionDialog('publish_stream,read_stream');
    //-->
</script>
share|improve this question

4 Answers

up vote 3 down vote accepted

Use Users.hasAppPermission to check if a user has those permissions.

General API: http://wiki.developers.facebook.com/index.php/Users.hasAppPermission

Javascript library: http://developers.facebook.com/docs/?u=facebook.jslib.FB.ApiClient.users_hasAppPermission

share|improve this answer
1  
This is using the soon to be deprecated REST API, see below for my answer how to do it with Graph API. – dain Nov 30 '11 at 18:48

The right way to do this with the Graph API is to use User.permissions.

See: https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fpermissions

So with the JS SDK you can do:

    FB.api('/me/permissions', checkAppUserPermissions);

    function checkAppUserPermissions(response) {
        console.log("User permissions response", response);
    }
share|improve this answer

abronte is right, use hasAppPermission, as you can see in this tuorial:

http://www.barattalo.it/2010/01/17/posting-to-facebook-from-website-with-facebook-connect/

share|improve this answer

Building off AdamB's answer, if you're using the JavaScript Graph SDK, you can still make calls to the REST API (the function users.hasAppPermission is part of the REST API).

Go to FB.api for instructions.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.