Get Visitor Posts from Facebook Graph API - facebook

I am fetching feeds from the following link:
https://www.facebook.com/wellsfargo/
I want to extract data from "Visitors Posts" section. Using facebook Graph API, it returns me feeds only from individual users. I want to get those feeds too in which above page is mentioned

its available in latest version of graph API. see here.
/v2.11/{page-id}/visitor_posts
Shows all public posts published by page visitors on the page. in case if you are calling below graph api v2.7 you will get this data with /{page-id}/tagged.

Related

Getting demographics details of people who have liked a post on a Facebook Page

I'm trying to get demographics information (mainly Location) regarding the people who like a particular post on a page owned by someone else.
For example, for a post on CocaCola's FB Page, I'm trying to get the reactions for a particular post by using this following string in the Graph API Explorer: 40796308305_10155753622733306/?fields=reactions{name,link,type}
Is there a way to also get location of the person who reacted to the post?
I'm using Graph API v2.6

How to get public posts by others on facebook page using graph API?

As of now FQL will no longer be available and cannot be queried. I want to filter my /page/feed api call results to only page posts by others. currently i am getting posts by page as well as by others using /page/feed api call

Publishing to Location Pages using Facebook's Graph API

When using Facebooks' Graph API:
I'll send GET to {user-id}/accounts?access_token=123CorrectToken456 which returns list of Facebook pages and access_tokens for each page that I have rights to. This allows me to GET and POST to those pages.
But how do you access and post to a page's locations? (see Dunkin' Donuts location pages for example)
I've tried using the {page-id}/locations which returns the locations and gives me read access but I can't post to those pages. ???

Facebook open graph api missing feeds

I use Facebook's Open Graph API to retrieve feeds of specific users by requesting the following:
feed?ids=<list_of_comma_seperated_ids>
this returns almost all feeds as I see them in Facebook site. however, some feeds (mainly likes on statuses and photos) are missing, although the missing feeds are public and can be viewed by any Facebook user.
These fields also do not get returned when querying stream table using fql.
Is there a way to get those missing feeds?
Thanks

News Feed via Graph API 'outdated'

On the Graph API documentation, the following is in brackets next to the News Feed endpoint:
this is an outdated view, does not reflect the News Feed on facebook.com
This is a fairly critical method in any app using the Graph API, so what are we supposed to use? Is there a way to obtain a more accurate version of the News Feed with a different API?
I've noticed some differences between what is shown on the website and what is shown through the API but I assumed most of it was down to individual user permissions. Either way this issue is non-trivial and is starting to make regret choosing the Graph API over, say, FQL.
You can use FQL to fetch the news feed. See the documentation under https://developers.facebook.com/docs/reference/fql/stream/
But it seems that the results doesn't differ from the results via the graph api.