Im getting this error when I try to post on my wall via my FBApp. On local host all works good. Here my code example.
$facebook = new Facebook(array(
'appId' => API_KEY,
'secret' => API_SECRET,
'cookie' => true,
));
$args = array(
'message' => $_SESSION['fields']['message'],
'name' => 'Look at POSTCARD',
'caption' => $context['ProjectName'],
'link' => $data['view_url']."&s=".$hash,
'description' => 'We are a lifestyle community with hotel services in the heart of San Francisco,check us out and ask a question.',
'picture' => $body_all["thumb"],
'actions' => array(array('name' => 'SEND A POSTCARD',
'link' => FACEBOOK_ACTION_URL."?next_postcard_id=".$postcard_id))
);
at this string, exception PHP Fatal error: Uncaught OAuthException: (#100) link URL is not properly formatted is throwing
$post_fb_id = $facebook->api("/me/feed/", "post", $args);

An active access token must be used to query information about the current user.any body know, how solve it? – Anton Sementsov Jan 24 '12 at 14:36