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.

how do you select the image you want to use when posting a link via facebook php sdk

this is the code i have:

$facebook->api("/me/feed", "post", array(
message => "TESTING FACEBOOK API",
link => "http://www.penpalparade.com"
));

Is it possible to chose the picture which is displayed with the link as i dont want it to be the first one, thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

Two options.

  1. In the HTML output from the link's URL, have the og tag specified for og:image correctly. See: http://developers.facebook.com/docs/opengraph/

  2. On feed's post you can specify "picture" with the URL for the image. (See http://developers.facebook.com/docs/reference/api/post/)

share|improve this answer

Your Answer

 
discard

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

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