publish to users wall using Facebook Application [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 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

Related

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.

Facebook App Permission [duplicate]

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.
The facebook Auth Dialog preview shows
"the app may, post on your behlaf..."
but when i try to login the option is not present and while a user can login. no posts will be made.
why are they different and how can i get posts on my behalf to the login?
I had this problem and solved it by using the scope parameters requesting the correct permissions.

how to make windows form app to login to facebook and retreive friends list in C# [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.
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

Facebook Locations, Groups etc. [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 would like to extract a list of ALL locations Facebook has stored, together with their Facebook Id. Would it be possible to do the same with for example sports teams? Companies? etc.
Many Thanks for your help!
No - this is not possible. Facebook does not make this information publicly accessible.

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.