does anyone knows what's wrong with the below code that I have?
I just couldn't seem to be able to get the name, caption, description and image shown on the Facebook user's news feed but the link and message show up and they worked.
WebClient wc= new WebClient();
wc.Encoding = Encoding.UTF8;
wc.UploadString("https://graph.facebook.com/me/links", null, "access_token=" + <facebookAccessToken> + "&link=" + <a valid url> + "&message=" + <a valid message> + "&name=SomeName" + "&caption=SomeCaption" + "&description=SomeDescription" +"&picture=http://mywebsite.com/photo.jpg");
Is there another way to do it (post a Link to the News Feed of Facebook) in ASP.NET code-behind?