I'm using the feed dialog, and the picture that I'm trying to use isn't showing. The dialog comes up with the correct description and caption, but no picture.
Here's my javascript:
FB.ui(
{
method: 'feed',
name: message,
description: "...",
caption: "...",
link: "http://our_domain.com",
picture: "https://picture_stored_on_aws"
},
(response) ->
window.close()
)
However, it works when I use a picture stored elsewhere, like this sample from the Facebook dev site: 'http://fbrell.com/f8.jpg'.
I tried removing the https, and still no picture. Anyone else come across this problem? Does it have anything to do with referencing a picture on aws?