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 am working on a app, it almost nearing completion. i want to post a image related to my app with comment on the users wall when user uses my app. i have seen so many apps on FB, which post image with comment, just like a invitation card, so that users friends can also use it .so can anyone help me on this

thanks in advance

share|improve this question
Have you tried anything? – Madara Uchiha Dec 20 '12 at 11:47
@MadaraUchiha :actually i didnt know the exact syntax for achieving the same.anyway i got what i wanted. thanks :) – dreamweiver Dec 21 '12 at 5:56

closed as not a real question by CBroe, Eric J., Piperoman, Blazemonger, Tom Wright Dec 20 '12 at 17:06

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

First things first, make sure the following permission is obtained:

publish_stream

Now, assuming you have created a $facebook object using the SDK, you can then post to the stream including a picture on the lefthand side:

$attachment = array
(
'access_token'=>$facebook->getAccessToken(),
'message' => 'This is the message',
'name' => 'NAME',
'caption' => 'This is my caption:',
'description' => 'This is the description',
'picture' => 'http://www.facebookanswers.co.uk/img/misc/iq.jpg'
);
$result = $facebook->api($this->id.'/feed/','post',$attachment);

The message field can be omitted if you want. I have included it so that at least you know it is there.

You need to change the contents of the fields to suit your needs, but hopefully you get the picture.

share|improve this answer
Thanks , that worked perfectly, just as i wanted :) – dreamweiver Dec 20 '12 at 6:24
@dreamweiver: If this answer solved your problem, consider upvoting and accepting it, by clicking on the large green tick mark (✔) under the answer's score. – Madara Uchiha Dec 21 '12 at 9:07
I don't know why people closed this question for not being a question, as it made perfect sense to me. – Facebook Answers Dec 21 '12 at 22:35

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