Facebook API:- Get Facebook page feeds data as per shared post - facebook

Using facebook graph api I want to get shared post data as like in this image:-
Required data is a highlight in the image.
Facebook graph api call by me is:- https://graph.facebook.com/v4.0/713630032329590/feed?summary=1&fields=engagement,id,created_time,message,full_picture,actions,attachments,from,icon,is_popular,is_published,is_spherical,place,privacy,properties,sheduled_publish_time,shares,likes,comments,status_type&access_token=EAAFIYsJbA5ABAF2KzPil7V78yBfGX1NcUv9c..
All over data is available but only complete page shared related data is not available in this api. I am not able to analyze which type of param required to get this detail.

Related

Fetch Facebook Calendar URL using Graph API

I'm trying to fetch the URL of the Calendar of a user (not a page), specifically containing birthdays, using the Graph API. I'm able to do it manually on the Facebook site (using instructions from here) but I want to automate it using the Graph API. In the documentation I'm only able to find details about extracting events related to a page, but not for a user. Does anybody have any experience with extracting the URL of a Facebook Calendar containing the birthdays of the friends of a user?
P.S: It is of the form webcal://www.facebook.com/ical/b.php?uid=xxxxxx&key=yyyyyy

Get Visitor Posts from Facebook Graph API

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.

Facebook Graph API: How can I retrieve the number of views of a video I shared from another profile using the Facebook Graph API?

I have a business manager account for my Facebook profile and I re-shared a video from another profile. How can I retrieve the number of views that my re-share accounted for through the Facebook Graph API?
If the video were posted directly to my profile rather than re-shared, I'd be able to use the /v2.8/{video-id}/video_insights method to retrieve the video stats, but that does not appear to be available for re-shares. The only insights that I can find for re-shares appears to be /v2.8/{post-id}/insights, but that does not include video views.
For example, here is a Facebook post by The Dodo where they are re-sharing a video by Discovery News.
This information can be retrieved by making a call to /v2.8/{post-id}/insights/post_video_views

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

Pull the likes and comments of a post using Graph API

I need to pull the likes and comments of a post in Facebook using Graph API. I found out that Facebook does not return the data as a whole but returns in pagination format.
IS there any way to get the likes ad comments data of a post at once instead of getting in pagination format?
If not is there any other where we can get maximum data per page so that we don't have to loop through many pages to obtain the data?
Please suggest!