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