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.

Hi I am using this code to post a note on my fan page, it works, the problem is that the diary page does not show the image, but only the text, why?

<?php
$access_token='MY ACCES TOKEN FAN PAGE';
$attachment = array(
'access_token' => $access_token,
'message' => 'MESSAGE <img src="IMAGE_ADDRESS" alt="TEST IMAGE" /> ',
'subject' => 'test test test'
);

// set the target url
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/id_fanpage/notes?');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false); //to suppress the curl output

$result= curl_exec($ch);
curl_close ($ch);
share|improve this question

1 Answer

How are you uploading the image?

It seems that the notes's message field accepts HTML tags and hence having something like the below should work:

<img src='http://domain.com/myImage.jpg' />
share|improve this answer
image as you can see from the code I'm inserting into the message field with html tags <img>, the problem is that the diary page does not show any preview image but if I click on the note is shown the image, how can I fix this? – Carlitos Jan 12 at 21:19
So the image does appear when you are on the note full view? where's the image in your message body? maybe if it's at the bottom the preview won't show it (I haven't test the notes api before) – ifaour Jan 12 at 21:38
That's right, the image is displayed when you open the note in full as you can see here '-> facebook.com/pages/Test-page/302269416561381, the img tag with the image is placed in the field "message" – Carlitos Jan 12 at 22:06

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.