how to make windows form app to login to facebook and retreive friends list in C# [closed] - facebook

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
need to make a windows form app to login to facebook and retrieve friends list in C#
its my first time to use facebook sdk , so i need a little help

Related

publish to users wall using Facebook Application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a list of users id to users who have authorized my application
How can I publish a post on their wall?
Of the top of my head, this is what you need to send POST Requests to with a valid access_token and parameters
https://graph.facebook.com/USER_ID/feed

Is there any way we can get chat data of my friends or friends of friends? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to get chat history data of my friends or of people following my page.
is there any way to get that ?
You can't get it for the people who are following your page, but if you have a facebook app then you can get the messages(chat) for only the people/users who have authorised your app and have given the permission of read_mailbox to your app.

when does fb app is required [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can you any one help me with basic question when is facebook app is required.
If we use just recommend Or Facebook Comments or Facebook like ,is facebook app requried?
A full app is not required to use the Like button or the Comments plugin. You can find more information about them here:
https://developers.facebook.com/docs/reference/plugins/comments/
https://developers.facebook.com/docs/reference/plugins/like/

Making a facebook program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I read that to make a facebook program you have to have a server. Is that true? I'm planning on making a facebook program but am wondering what kind of hassle it is.
Facebook just released integration with Heroku so that you can make an app without having to manage your own server. The post about it is here.

How to publish to friends wall using fbml? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How to publish some result from my app to someones wall by selecting the friend?
You'll need to use Stream.publish method. In short the target_id parameter is what you're looking for.
There's a pretty good example in the wiki link above.