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 am uploading or Posting Image to Facebook using Facebook C# SDK but I call this function one time but it uploads the same Image three times or more. It should only upload the Image one time but it does at least three times, I am using 5.4.1 SDK. Code is:

public void AddCover(string accessToken, string imageName, string folder, string loggedinuserId)
{    
    FacebookClient facebookClient = new FacebookClient(accessToken);
    var fbUpl = new Facebook.FacebookMediaObject
    {
        FileName = imageName,
        ContentType = "image/jpg"
    };

    var bytes = System.IO.File.ReadAllBytes(@"F:\Websites\Covers\" + folder + "\\" + imageName); 
    fbUpl.SetValue(bytes);

    var photoDetails = new Dictionary<string, object>();
    photoDetails.Add("message", "Facebook Covers");
    photoDetails.Add("image", fbUpl);
    var response = facebookClient.Post(@"/" + loggedinuserId + "/photos", photoDetails);
    var result = (IDictionary<string, object>)response;
    var postedcoverId = result["id"];

}

Am I missing something here? Please see the code and tell me what I am doing wrong. Thanks

share|improve this question
When are you calling this function? – ThePower Jul 31 '12 at 10:43
after getting the access token, in the end of whole process after this i have to show JqueryUI modal dialogue box to tell user that image has been posted. – Arbaz Abid Jul 31 '12 at 10:47
What I meant was, is it in response to an event, such as button click or whatever. – ThePower Jul 31 '12 at 10:48
not its just a void function, I call when I have the access token to pass to it like this. AddCover(accessToken, coverimage, folder, loggedinUserId) I am running this on IIS 6.0 under .Net framework 4.0 – Arbaz Abid Jul 31 '12 at 10:49
What calls the void function... – ThePower Jul 31 '12 at 10:52
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.