Is there any way that exists to access Facebook from a .NET WinForms application?
I want to develop an application in .NET (either C# or VB.NET) which can access Facebook.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is a nice idea…
There are actually several ways, since facebook is publishing the service as API, you can try researching their API.
However the most common way of getting a page is either using HttpWebRequest/HttpWebResponse or WebClient. It will download the HTML code where the HTML will load another page (I am guessing here, since facebook is heavily using ajax).
So after retrieving HTML page from facebook, what you need to is checking what page/service is facebook trying to retrieve, then you can get it using above method. This is hardcore programmer though…