Facebook API, ASP.NET , Post to wallhttp://forums.asp.net/t/1796756.aspx/1?Facebook+API+ASP+NET+Post+to+wallWed, 25 Apr 2012 10:58:38 -040017967564950448http://forums.asp.net/p/1796756/4950448.aspx/1?Facebook+API+ASP+NET+Post+to+wallFacebook API, ASP.NET , Post to wall <p>I'm trying to figure out how to post an image to a users wall with Facebook graph API and ASP.NET.</p> <p>I have tried something like this code :&nbsp;http://osnapz.wordpress.com/2010/04/23/using-asp-net-with-facebooks-graph-api-and-oauth-2-0-authentication/</p> <p>I've tried this to se if it is working with a simple message:</p> <pre class="prettyprint">string url = &quot;https://graph.facebook.com/me/feed?access_token=&quot; &#43; oAuth.Token; string json = oAuth.WebRequest(oAuthFacebook.Method.POST, url, &quot;message=&quot; &#43;HttpUtility.UrlEncode(&quot;Test&quot;));</pre> <p>It posted a message to my wall. One time. And then I get these warnings from the Facebook debugger:</p> <p></p> <p>Could not follow redirect : URL requested a HTTP redirect, but it could not be followed.</p> <p>Missing Required Property: The 'og:url' property is required, but not present.</p> <p>Missing Required Property: The 'og:type' property is required, but not present.</p> <p>Missing Required Property: The 'og:title' property is required, but not present.</p> <p></p> <p>How can I set the properties?</p> 2012-04-25T10:07:41-04:004950562http://forums.asp.net/p/1796756/4950562.aspx/1?Re+Facebook+API+ASP+NET+Post+to+wallRe: Facebook API, ASP.NET , Post to wall <p>Posting to Facebook Wall using Graph API</p> <p>Refer this</p> <p><a href="http://blog.impact-works.com/2011/07/12/posting-to-facebook-wall-in-asp-netc-using-graph-apipart-5/">http://blog.impact-works.com/2011/07/12/posting-to-facebook-wall-in-asp-netc-using-graph-apipart-5/</a></p> <p>You can download source code from here</p> <p><a href="http://blog.impact-works.com/wp-content/uploads/2011/07/project2.zip">http://blog.impact-works.com/wp-content/uploads/2011/07/project2.zip</a></p> 2012-04-25T10:58:38-04:00