I've managed to post to a user wall, but when i try to add a picture to the parameters of the post, the post fails and the Result is null. I think that i´m doing everything alright, but i could use some help. Thanks in advance!
IDictionary<string, object> parameters = new Dictionary<string, object>();
parameters["access_token"] = fbAccessToken;
parameters["name"] = "my picture";
parameters["message"] = "this is a picture uploaded from my the facebook sdk";
parameters.Add("picture", "http://t2.gstatic.com/images?q=tbn:Bebedm7ldqvC3M:http://www.configmac.com/images/logiciel/image.jpg");
fbApp.PostAsync("me/feed", parameters, (val) =>
{
if (val.Error == null)
{
// Asyncronous call, only executed after obtaining Facebook response
var result = (IDictionary<string, object>)val.Result;
}
else
{
}
});