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 have posted a message to my facebook wall through my web site, that contains also a picture. What I want now is hide the link of the picture that is shown there but still make the picture work as a link. I am using:

$facebook->api('/me/feed', 'post', array('message'=> $message, 'description'=> $description, 'picture'=> $image, 'cb' => ''));   

Does anyone know how to do this?

Thanks

share|improve this question
Do you mean you want to edit existing wall post? – serg Oct 12 '10 at 16:05

1 Answer

Seems like what you need is to use old REST API call stream.publish and pass an attachment. It has far more options and you can have separated links for image itslef and the one mentioned in post.

See: stream.publish, attachment format, how to call old REST API methods from new API

share|improve this answer
I add in the array the 'name'=>$name, and now the link has been replaced with this name, so it is ok. – novellino Oct 13 '10 at 7:17

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.