Read Users Wall using Facebook Graph API for iPhone - iphone

I want to retrieve all the feeds in the users wall
Posts by my friends, Posts from the Page I Liked, Pictures, Videos Posted
basically everything my wall shows.
I used this
[facebookObj requestWithGraphPath:#"me/feed" andDelegate:delegateObj];
But this results me showing the posts only by me. I cant able to get the feeds by others.
How to get all those feeds.
I have set the permission as read_stream. Do i have to set anymore permissions to get those feeds

Use /me/home instead.

Related

Facebook Graph API only returns my own reactions to my posts

I have set up a test page on Facebook to use with my Facebook app.
On the permissions part, I have allowed all permissions including read insights
With this, I am able to fetch things such as the feed, visitor posts, comments, etc.
The problem starts when I try to fetch reactions to my page feed.
I basically call the post id and reactions as below:
<post-id>/reactions
This, however, only returns the reactions that I made as the page admin.
If any other Facebook user reacts on my page feed, their reactions do not show up
Am I missing anything here?

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 ...)

Getting friend's wall post data via facebook API

I have never used facebook API.As part of my research project, I need to get activity data (the posts made, the links shared etc.) of a user's friends. Is it possible to get this data via facebook API? Do i need permission from user only or i need permission from user's friends too for accessing that data? I am assuming that since a user can see wall posts of his friends when he visits his friend's facebook profile, the same thing is possible using the API too.

Extract all posts on a user's Facebook wall

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

Facebook Graph API shows different results in me/home

When I do a GET with my browser (already logged-in at Facebook):
https://graph.facebook.com/me/home?access_token={token}
the results are different than doing the same via a FB app using Facebook C# SDK.
Specifically, what the API is not returning are feeds posted by other applications.
Why can be this happening? Can't an application retrieve updates from other applications even if it has the read_stream permission?
I even requested for additional permissions: read_stream,user_activities,friends_activities,friends_likes,user_likes,read_requests
but nothing has changed.
What I need is to get ALL and the same stories an user would see at his FB news feed.
I use
me/feed
me/posts
me/statuses
me/links
Sample for a page: http://apps.facebook.com/anotherfeed/wallfeed.php uses the /pageid/feed
In filtering for my wall plugin. Even with perms, if a friend has interacted with a post and is not sharing interaction the post will not show in Graph. Technically unless you have perms from all friends, and friends of friends you can not fully emulate the wall feed.
I noticed the results are different according the geo-localisation.
If your server is hosted in another country it might be the reason why