There are two three ways to check if the user has granted your application a specific Permission: Using the Graph APINow that Facebook added the permissions connection to the user object, you can easily check the userâs permission: $permissions = $facebook->api("/me/permissions"); if( array_key_exists('publish_stream', $permissions['data'][0]) ) { // Permission is granted! // Do the related task $
{{#tags}}- {{label}}
{{/tags}}