Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use below code to post an url to facebook page as a admin but if i post an message,it is posting but it is not posting photos and url.

 $args = array(
            'access_token'  => token,
            'message'       => $url
        );

        $wall = $facebook->api("/".$pid."/feed","post",$args);

Is there any other function that does that?

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to add

  • 'caption'
  • 'link'
  • 'picture'

variables to your array to show a picture with a caption and a link to a url.

share|improve this answer
:Photo got posted on my wall but when i clicked on photo,it took to my web server file location.It should not go there,is there any other solution to upload on album. – user1263374 Mar 21 '12 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.