Facebook publication from app to page wall invisible to others -


i have big problem, try publish post facebook app facebook page wall.

i used function :

function post_facebook($message){       include_once('php-sdk/facebook.php');      $app_config = array(         'appid' => '*********',         'secret' => '************');      $page_config = array(         'access_token' => '********',         'page_id' => '*********');      $facebook = new facebook($app_config);      $params = array(        'access_token' => $page_config['access_token'],        'message' => $message);      $post_id = $facebook->api('/'.$page_config['page_id'].'/feed','post',$params); } 

everything seems ok, can see posts. when i'm on wall seems normal, see posts app. if else goes on wall, won't able to. publication set 'public' on privacy settings can't see why it's not working.

if go post url (https://www.facebook.com/*****/posts/*****) account says : page doesn't exist....

you need disable sandbox-mode facebook app's settings


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -