My app is posting to the users Facebook feed. Everything works fine, but the picture is missing. I cannot figure out why.
This is the array used by the $facebook->api method:
Array
(
[message] => MyText
[link] => MyLink
[name] => MyName
[picture] => https://lala.herokuapp.com/images/oceanblue.png
[caption] => MyCaption
[description] => MyDescription
)
The image is accessible (not the real url above) and shows up when I open the url within a browser.
The api return object looks like this:
Array
(
[id] => 652685341_10151011701170342
)
Help is much appreciated, thanks! :)