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.

Can I get the correct code of Facebook application, which allows to share or post the result image of the application to the users wall(Timeline).

Presently I am using the code below;-

 $attachment = array(
   'message' => 'this is my message',
   'name' => 'This is my demo Facebook application!  https://apps.facebook.com/whoisyourmillionare/',
   'caption' => "Caption of the Post",
   'description' => 'this is a description',
   'picture' => 'http://www.nasa.gov/images/content/297522main_image_1244_946-710.jpg');
   $result = $facebook->api('/me/feed/', 'post', $attachment);

and the out put is as per in the image 1

Actually I need to be as image 2

enter image description here

share|improve this question
Try posting to /me/photos instead of /me/feed You should change picture to image – dythffvrb Sep 24 '12 at 6:39
I got a error like this "OAuthException(#324) Requires upload file" My intension is not to upload, to share in the wall of user. – Prasoon Prahaladan Sep 24 '12 at 6:46
1  
Take a look at this example: link – dythffvrb Sep 24 '12 at 6:50
Yes..its cleared. Thanks for your answer. – Prasoon Prahaladan Sep 24 '12 at 7:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.