I was try many method to post user wall using php sdk.But not success.Anyone know the successfully posting to wall.please help me ... This code return any error but it will not be post user time lime . currently i was using this php code..
require_once('src/facebook.php');
$config = array(
'appId' => '#########',
'secret' => '#########################',
);
$facebook = new Facebook($config);
$user_id = $facebook->getUser();
echo $user_id;
$access_token = $facebook->getAccessToken();
if($user_id!=0)
{
try {$attachment = array(
'message' => "good Evening",
'name' => "good Evening",
'link' => "good Evening",
'description' => "good Evening",
'picture'=>"http://hotactresshotphotos.files.wordpress.com/2011/02/bhama_028.jpg",
'actions' => json_encode(array('name' => $action_name,'link' => $action_link))
);
$result = $facebook->api('/'.$user_id.'/feed', 'post', $attachment);
}
catch(FacebookApiException $e) {
$login_url = $facebook->getLoginUrl( array(
'scope' => 'publish_stream'
));
echo 'Please <a href="' . $login_url . '">login.</a>';
error_log($e->getType());
error_log($e->getMessage());
}
echo '<br /><a href="' . $facebook->getLogoutUrl() . '">logout</a>';
} else {
$login_url = $facebook->getLoginUrl( array( 'scope' => 'publish_stream' ) );
echo 'Please <a href="' . $login_url . '">login.</a>';
}