If I have the publish_stream extended permission for a Facebook app, does that allow my app to write on my feed while I\'m offline?
Thanks,
Tee
Just in case anyone stumbles on this looking for a solution using PHP. Using the PHP API, I ended up with this working for me, with help from the FB docs here:
http://developers.facebook.com/docs/reference/php/facebook-api/
Note that $users_facebook_id is the Facebook ID of a user who has granted your app permissions with the "publish_stream" permission.
$access_token = $facebook->getAccessToken();
$ret_obj = $facebook->api('/'.$users_facebook_id.'/feed', 'POST',
array(
'link' => 'http://www.website.com',
'message' => 'Testing'
));