Guys, Here is a sample and step by step guide to integrate Facebook API with C#.NET
Try and let me know if you face any issues in the process.
I hope you guys enjoy. Happy Coding
Hi everyone, This is a simple step by step guide to integrate Facebook to your windows App.
First of all, Create a Windows forms project and download the Facebook SDK using NuGet. Go to Tools -> NuGet Package Manager -> Package Manager Console.
This will open up the console in side the Visual Studio. Then type the below command to download the FB SDK.
Install-Package Facebook – Pre
Why we are using -Pre, In this example I’m using FB SDK v6.0.2 Alpha. Since V6.0 is still in the pre release we need to pass “-Pre” with the command.
Once you successfully downloaded the SDK, you can see the Facebook dll is added in the reference.
Read More-
http://codes2know.com/facebook-integration-with-c-net/
Try and let me know if you face any issues in the process.
I hope you guys enjoy. Happy Coding
Hi everyone, This is a simple step by step guide to integrate Facebook to your windows App.
First of all, Create a Windows forms project and download the Facebook SDK using NuGet. Go to Tools -> NuGet Package Manager -> Package Manager Console.
This will open up the console in side the Visual Studio. Then type the below command to download the FB SDK.
Install-Package Facebook – Pre
Why we are using -Pre, In this example I’m using FB SDK v6.0.2 Alpha. Since V6.0 is still in the pre release we need to pass “-Pre” with the command.
Once you successfully downloaded the SDK, you can see the Facebook dll is added in the reference.
Read More-
http://codes2know.com/facebook-integration-with-c-net/


