Extract all posts on a user's Facebook wall - facebook

I'm trying to make a summary of all the wall posts made on a company's Facebook wall but I'd like to have all the posts in XML-like format. I'm aware of the Graph API but I've never used it before.
The exact specific problem:
How can I 'extract' all wall posts made on a company's Facebook wall?

try the following with Graph API.
https://graph.facebook.com/[company_page_id]/posts?access_token=XXXXXXX

Related

graph api user news feed

by calling /me/feed in graph api i can get feed like my posts or posts that i am tagged in.
How can i get a feed with my friends posts or news that i see in my wall in fb?
i mean feed like the one that i see when i login to facebook
i tryed me/feed with several parameters but no luck
same here
https://developers.facebook.com/docs/graph-api/reference no info :(
i didnt manage to find something useful in facebook graph api explorer
thanks!
How can i get a feed with my friends posts or news that i see in my wall in fb?
You can’t.
That used to be available in the very beginning via the /home edge, but that has since been removed.
There is no replacement. Friend’s posts are only available to your app, if the friend would join your app and grant it permission to read their posts.
(Plus, platform policy says apps should not replicate Facebook “core functionality”. If a user wants their news feed, they can go to Facebook ...)

post to friends feed facebook without feed dialog

I'm creating an app using Facebook API in cascades BB 10. I have done the login part in C++ using qnetwork manager. I was able to post to my wall using HTTP post with graph API. I want to post to my friends wall. After searching, I found that it is not possible using graph API but only with feed dialog. As I'm not using any SDK, is there any other option for posting to friends wall?
No. But some other options (since your req could be batch post) you may like, such as:
You can post feed/photo on the user's wall and tag the friend/s in that post using mention tagging or place parameter
Read more about tagging on the developers site here: Tagging

Has Facebook started blocking posting on Friend's wall?

Anyone Kindly suggest, has Facebook started blocking posting on friend's wall?
Since in my previous application I tried posting images, links, text etc in my friends facebook wall it was working fine and better, but suddenly after February I am not able to post information to my friends wall.
Facebook have removed this ability from the api. You can only post to your own wall. There is a blog post about it somewhere on their developer blog and you can see it is on the completed roadmap https://developers.facebook.com/roadmap/completed-changes/ (search for "Removing ability to post to friends walls via Graph API " )
If you want to post to another users wall Facebook advise you to invoke the Feed dialog

Is it possible to post to users' feed without posting on their wall?

I would like my Facebook app to post personalized updates to users on their feeds, without posting on their walls.
Per the facebook documentation http://developers.facebook.com/docs/reference/api/user/ the feed IS the wall.
feed The user's wall.
So the answer is "No".
There is actually no way to post something on a "Wall" but "Feed" in Facebook via API. They are practically the same place.
You can create post in feed and Facebook will decide if that post will appear in user's wall according to many aspects that wasn't clearly described (and possibly will never be due to Timeline).
There is also a bit old but interesting article Facebook’s Wall vs. News Feed Explained by Pixel Coaching that you may want to read.

Can I Use Facebook Graph API to Read My Facebook Page Fans' Walls?

I am wondering if there is a way to programmatically read the wall posts of my Facebook Page's fans (I mean those who "like" my Facebook Page) by either using Graph API or FQL.
I would like to develop an application that aggregates my fans' wall posts so that I can get to know what kind of people "like" my Facebook Page by reading what they are saying in their walls.
No, you don't get this level of access just for having had someone like your page. You would need to specifically request access using a Facebook application.