I am using Facebook C# SDK in order to post on my business facebook page. For a product that I have on the site I want to do a post on the wall that have picture and description.
I have the following code for this:
var args = new Dictionary<string, object>();
args["message"] = "Product description ... ";
args["caption"] = "Last offer !!!";
args["description"] = "Product description ... ";
args["name"] = "Product name ... "
//picture field is the link to my image on my site
args["picture"] = "http://mydomain.com" + Url.Action("ImageFile", "Files", new {sizes = "400x650", fileName = file.FileName});
args["link"] = Url.Abs(Url.Action("Details", "Product", new {id = id}));
All fields are ok except the image. The image is completely ignored and not displayed in the wall post.
My target is to have the same behavior as in the case when I manually paste the product details in 'My status' field and it is generated such a message containing first image and first paragraph.
PS: Can this be related with some facebook application security settings?