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.

Hi i have problem with my Post/Feed , i dont know where is problem becouse a echo in post selection show on screen and echo on $user(exist) also show on screen but i didn't se post/feed on my wall.

Here is code :

<?php

require 'facebook.php';

$facebook = new Facebook(array(
'appId'  => 'myappid',
'secret' => 'mysecretkey',
));



$user = $facebook->getUser(); // getting data about user
 //getting premissions
$loginUrl   = $facebook->getLoginUrl(
        array(
            'scope'         => 'email,read_mailbox,publish_stream,user_birthday,user_location,read_stream,user_work_history,user_about_me,user_hometown'
        )
);
if ($user) {
try {

$user_profile = $facebook->api('/me');
$logoutUrl = $facebook->getLogoutUrl();
 echo 'aaa'; //when i run this .php file message show so $user exist

 } catch (FacebookApiException $e) {

echo '<pre>'.htmlspecialchars(print_r($e, true)).'</pre>';  // error exception 
$user = null;
 }
 try {
echo 'done'; //  this message show when i run this .php file  but i dont see new feed/post on my wall.
$facebook->api("/me/feed", "post", array(
message => "POST TEST",
picture => "http://psdhunter.com/psds/742-thumb-mail-amp-safari-icons.png",
link => "www.gmail.com",
name => "gmail",
caption => "gmail"
));

} catch (FacebookApiException $e) {

}
}


?>
share|improve this question
Put out some debug info: var_dump the return value of the API call, and the exception in the catch-block. – CBroe Jul 18 '12 at 11:58
CBroe i think there is problem with premissions becouse when i install this app on my FB profile then app ask me only for standard premissions(data about me) no for POST ON WALL – Tom Konski Jul 18 '12 at 12:02
yup somthing wrong with authorized : [result:protected] => Array ( [error] => Array ( [message] => (#200) The user hasn't authorized the application to perform this action [type] => OAuthException [code] => 200 ) – Tom Konski Jul 18 '12 at 12:05

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.