After authorize the current user to create an application with the createApplication function (http://wiki.developers.facebook.com/index.php/Facebook.createApplication)
I'm trying to publish streams on this new application page :
$facebook = new Facebook(API_KEY,API_SECRET);
$facebook->api_client->begin_permissions_mode(NEW_APP_API_KEY);
$res = $facebook->api_client->stream_publish('Yeahhh'.date('H:i:s'), $attachment = null, $action_links = null,
$target_id = NEW_APP_ID,$uid= NEW_APP_ID);
But it get this error : Application does not have permission for this action
What is wrong with this ?
Thx !