There has been some discussion on this here on SO, and I've tried all suggestions I found, but no dice.
Every time I post to FB wall using my app, everything goes well except the darn picture attachment which does not show on the wall.
I am using CURL as follows
$attachment = array(
'access_token' => $fb_user['access_token'],
'message' => $fb['post_text'],
'link' => $fb['post_url'],
'name' => $fb['post_title'],
'description' => 'bla',
'picture' => rawurlencode($fb['post_picture']),
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/' . $fb_user['uid'] . '/feed');
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, true); //to suppress the curl output
$result = curl_exec($ch);
curl_close($ch);
I'm sure you've seen this code before. Anyway, picture doesn't show on wall.
I've run the picture URL through the FB linter and it returns 200 but gives an error that seems oxymoronic
http://example.com/images/pictures/post/full/0367496d7569e6a85ec4d64af02f6b60.jpg
Response Code: 200
Errors That Must Be Fixed
Can't Download: Could not retrieve data from URL.
Of course, I can bring up the image on my browser. And all folders on the path to the picture are 755, and the picture itself is 644.
So if you have any ideas to throw at me please give me a pointer how to debug this. Any comments are welcome.
Thanks.
++++++++++++++++++++
$attachment = array(
'access_token' => $fb_user['access_token'],
'message' => $fb['post_text'],
'link' => $fb['post_url'],
'name' => $fb['post_title'],
'description' => 'bla',
'media' => array(
'type' => 'image',
'src' => rawurlencode($fb['post_picture']),
'href' => $fb['post_url'],
),
);