I am trying to publish stream on my facebook WEBSITE wall page.

so far I succeeded to publish stream via my APP page but I dont want via, I want to publish directly.

as I said before, I want to publish on my facebook WEBSITE wall page, not on the app wall page.

I couldnt find anything useful... also I want to publish with PHP if thats possible.. if it is not possible than I guess I will have to use js. anyway how can I do that?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

this is how I do it with PHP :

 //Note that you will need to have the access token which is what gives permission to write.
 function self_fb_post($to_uid,$acToken) {
    global $fb; //this is the fb object
    $result = false;
    $feed_dir = '/'.$to_uid.'/feed/';  //to the UID you want to send to
    $message_str =  'Why does facebook development not have decent support';
    $msg_body = array('access_token' => $acToken,   
                  'name' => 'My wall post',
                  'message' => $message_str,
                  'caption' => "www.mysite.com",
                  'link' => 'http://www.mysite.com',
                  'description' => 'A wall post which is used to express the frustration of working with crappy facebook developer documentation', 
                  'picture' => 'http://farm6.static.flickr.com/1111/some-pic.jpg',
                  'actions' => array(array('name' => 'My Site',
                              'link' => 'http://www.mysite.com'))
                  );

try {
            //this is the API call that does it all
    $result = $fb->api($feed_dir, 'post', $msg_body);
} 
catch (Exception $e) {       
    $err_str = $e->getMessage();
}


     return $result;
}
link|improve this answer
I included (by using require) the facebook.php (sdk), used the function sent $acToken as access token and $to_uid as id of the website page. Is this right? because it didnt work for me – Ron Mar 14 '11 at 21:29
The $to_uid is the Facebook user id of the person who's wall you want to post to (be it your own or someone elses). – Zigglzworth Mar 14 '11 at 23:46
well I tried three different ids > app id, website wall id and my user id, nothing worked... btw I used this example to get the info > github.com/facebook/php-sdk/blob/master/examples/example.php – Ron Mar 14 '11 at 23:55
What error are you getting? maybe the access token is not being set right... this works fine for me. In my case I am getting both the access token and uid from my database. – Zigglzworth Mar 15 '11 at 10:16
1  
Is your facebook object called $fb ? this is just what I named mine so make sure you are using the same one. require_once("path_to/facebook.php"); $fb= new Facebook(array( 'appId' => 'Your app id', 'secret' => 'your secret key', 'cookie' => true, )); – Zigglzworth Mar 15 '11 at 17:18
show 24 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.