Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying so many ways to upload images on facebook wall from my mvc3 application from so many days then finally i write a code for this but images are not upload on to facdebook wall here is my controller code

 [HttpPost][HttpGet]
    public ActionResult Profile(FacebookOAuthResult facebookOAuthResult)
    {
        if (facebookOAuthResult != null)
        {
            if (facebookOAuthResult.IsSuccess)
            {

                string path;
                path="C:/Users/Prem/Pictures/logo5.jpg";

                // Verify that the user selected a file

                var media = new Facebook.FacebookMediaObject
                {
                    ContentType = "image/jpeg",
                    FileName = Path.GetFileName(@path)

                }
                                        .SetValue(System.IO.File.ReadAllBytes(@path));
                var fb = new FacebookClient(facebookOAuthResult.AccessToken);

                fb.PostAsync("myappid" + "/photos", new Dictionary<string, object> { { "source", media } });



            }
        }

        // redirect back to the index action to show the form once again
        return RedirectToAction("Profile");


}

and here is my profile.cshtml code

@using (Html.BeginForm("Profile", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input type="file" name="file" id="file" /><br />
<input type="submit" value="Upload" />
}

could any one help me get succes . thanks in advance

share|improve this question

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.