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 wrote an application for facebook but i couldn't upload image to album that i created, code is in below, thanks for your help.

        Facebook.FacebookAPI api = new Facebook.FacebookAPI(GetAccessToken());
        Dictionary<string, string> album = new Dictionary<string, string>();
        album.Add("name", "Test Album");
        album.Add("message", "Message here!");
        JSONObject result = api.Post("me/albums", album);
        string AlbumId = result.Dictionary["id"].String;

        Dictionary<string, string> photo = new Dictionary<string, string>();
        photo.Add("message", "test Message");
        photo.Add("source", "tgw.jpg");
        JSONObject photoResult = api.Post("/" + AlbumId + "/photos", photo);
share|improve this question

1 Answer

Does this works for you?

string photoPath = @"..\..\..\Facebook.Tests\bin\Release\monkey.jpg";
            string albumId = ConfigurationManager.AppSettings["AlbumId"];
            byte[] photo = File.ReadAllBytes(photoPath);

            FacebookApp app = new FacebookApp();
            dynamic parameters = new ExpandoObject();
            parameters.access_token = ConfigurationManager.AppSettings["AccessToken"];
            parameters.message = "This is a test photo of a monkey that has been uploaded " +
                                 "by the Facebook C# SDK (http://facebooksdk.codeplex.com)" +
                                 "using the Graph API";
            var mediaObject = new FacebookMediaObject
            {
                FileName = "monkey.jpg",
                ContentType = "image/jpeg",
            };
            mediaObject.SetValue(photo);
            parameters.source = mediaObject;

            dynamic result = app.Api(String.Format("/{0}/photos", albumId), parameters, HttpMethod.Post);

Taken from here

share|improve this answer
I will look at it thanks – Xenon Mar 29 '11 at 14:11
I don't have a app.Api method i thought our sdk's are different :( mine is github.com/facebook/csharp-sdk – Xenon Mar 29 '11 at 14:14
I think you should really really switch to this microsoft's SDK facebooksdk.codeplex.com it is just Great – Afnan Bashir Mar 29 '11 at 14:37

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.