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'm new to the facebook c# sdk, and I'm trying to create a program that will post to a page's timeline.

I have been trying to follow this, however I'm having difficulty understanding the second code snippet since it makes use of the Request class, in asp.net. I can't find a way to translate this into WinForms.

(I did have to change the FacebookAPI to FacebookClient)

How can I achieve the same effect, of redirecting to facebook and receive the code to get an access token?

share|improve this question

2 Answers

up vote 1 down vote accepted

There is a specific Winforms sample for the facebook SDK available here: Facebook Sample using Facebook C# SDK with WinForms

This sample demonstrates the use of Facebook C# SDK v6 as a WinForms sample.

Note: This sample does not necessarily demonstrate the best use but rather features of using Facebook C# SDK on a desktop app. It is always recommended to use asynchronous (XAsync or XTaskAsync) methods rather then the synchronous methods. XTaskAsync methods are preferred over XAsync methods.

share|improve this answer
Thanks, it helped a lot. I don't know how I missed it. – annonymously Dec 30 '12 at 8:52

If you're just posting to your own page's timeline, the easiest way is probably a PowerShell script using the New-FBPost cmdlet: http://facebookpsmodule.codeplex.com

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.