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 am very new to Facebook C# SDK, currently trying to develop a C# DesktopApp(WPF) using Facebook-C#-SDK latest version(6.0.20).

First installed NuGet Package Manager and then latest Facebook SDK onto my WPF app successfully (that's what Package Manager Console say at least).

Trying to follow below link to build an app. http://csharpsdk.org/docs/web/getting-started

Reading the article, now I have to configure the SDK, however I can't really follow because all I see is just added reference of Facebook.dll and a file 'packages.config', which has xaml code below.

<?xml version="1.0" encoding="utf-8"?> 
<packages> 
 <package id="Facebook" version="6.0.20" /> 
</packages> 

Any help will be appreciated to understand what I need to do next.

Thanks

share|improve this question
Have you worked through the example in the link you provided? The next step is to make a simple request to Facebook (without an access token) var client = new FacebookClient(); dynamic me = client.Get("totten"); – njr101 Jun 25 '12 at 9:38

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.