Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
                        {
                        }
                    });
share|improve this question

2 Answers

var picture = File.ReadAllBytes("a.jpg");
var fb = new FacebookClient(_accessToken);

fb.PostCompleted +=
    (o, args) =>
    {
        if (args.Error == null)
        {
            MessageBox.Show("Picture posted to wall successfully.");
        }
        else
        {
            MessageBox.Show(args.Error.Message);
        }
    };

dynamic parameters = new ExpandoObject();
parameters.caption = txtMessage.Text;
parameters.method = "facebook.photos.upload";

var mediaObject = new FacebookMediaObject
                      {
                          FileName = Path.GetFileName(ofd.FileName),
                          ContentType = "image/jpeg"
                      };
mediaObject.SetValue(picture);
parameters.source = mediaObject;

fb.PostAsync(parameters);
share|improve this answer
Hi, Thanks for your help, but i want to post a picture in the user's wall, not create a new album and upload a photo to it, any idea on how to do that? Thanks again. – David Jardim Mar 10 '11 at 17:25
@prabir I tried your method, but as the commenter above wrote it creates a picture in the album. Is there a way to only upload the picture to the wall without creating anything in an album? Thanks – Mr. Roland Sep 15 '11 at 2:37

I have a similar issue but in my case I am trying to upload the photo rather than just provide a link. Whatever I try, whether it is using the GRAPH API or REST API I cannot get a photo to upload to facebook. It would be great if one of the authors would step forward with a real working example that would post a photo to the wall or an album. I tried copying the unit test that came with the sdk and tweak it slightly to be asynchronous (I am developing a Windows Phone 7 app) and had no luck. Very frustrating!!! Here is my latest attempt but it fails with a (OAuthException) (#1) An unknown error occurred.

using REST API:

  var photo = new WriteableBitmap(0, 0).FromResource("Background200x200.jpg");
  FacebookApp app = new FacebookApp(_facebookAccessToken);

  IDictionary<string, object> parameters = new Dictionary<string, object>();

  parameters["method"] = "photos.upload";
  var mediaObject = new FacebookMediaObject {
    FileName = "test.jpg",
    ContentType = "image/jpeg"
  };
  mediaObject.SetValue(photo.ToByteArray());
  parameters["source"] = mediaObject;
  app.PostAsync(parameters, UploadComplete);

using GRAPH API:

  var photo = new WriteableBitmap(0, 0).FromResource("Background200x200.jpg");
  FacebookApp app = new FacebookApp(_facebookAccessToken);

  IDictionary<string, object> parameters = new Dictionary<string, object>();
  parameters["message"] = "Test photo " + DateTime.Now.ToString();

  var mediaObject = new FacebookMediaObject {
    FileName = "Background200x200.jpg",
    ContentType = "image/jpeg",
  };

  mediaObject.SetValue(photo.ToByteArray());
  parameters["source"] = mediaObject;

  app.PostAsync("/me/photos/", parameters, UploadComplete);
share|improve this answer
Indeed very frustating... I have already managed to upload a picture to an album of an user but not on the wall... If you want to upload try when using the REST Api adding an extra parameter like this: parameters["method"] = "facebook.photos.upload"; – David Jardim Mar 11 '11 at 11:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.