Get Follow up facebook page conversations via graph api - facebook-graph-api

Is it possible to filter follow-up conversations on a Facebook page, to mark a conversation as follow-up via Facebook API? I wasn't able to find any relevant answers.

Related

Getting the private instagram users followers count via API

This isn't a new question. But the old topics ended in 2016 and I guess there must be a new solution to get the public meta data like profile pictures and follower data of a private instagram account.
The new api has the endpoint: https://developers.facebook.com/docs/instagram-basic-display-api/reference/user but this is only working with the correct userid - how to get this by username?
The old endpoints aren't working anymore and I am thinking about how to cerate a service like: https://www.instafollowers.co/instagram-follower-count with an APP-Token by the graph api or is there another solution to get anybodys instagram information (private and business and creators) account.
Hope for answers. :)
Consider to use thee business discovery API in Instagram Graph API.
Basically just create a facebook page and connect to an instagram business/creator account.
Then you are able to get the other users details by their ig username.
Visit https://developers.facebook.com/docs/instagram-api/reference/user/business_discovery for more details.

How does pictame and graphixto get the details of all the instagram profiles as the API provided by instagram does not support this?

How do they get details of media, engagement followers etc from Instagram as the Graph API requires token generation? They have mentioned on their page that they use Instagram API. Do they scrape the web content or get these details from API?
https://www.pictame.com/ and https://graphixto.com/

Retrieve comments from an implementing facebook comments website

I can not get Facebook Graph Api to retrieve comments from websites that implements facebook commenting system.
I want to provide sentiment feedback statistics for various websites. I wanted to retrieve comments from few websites which are implementing facebook commenting system, I found graph API method /{object-id}/comments
which should return set of comments from specific object-id (which is an url of article consisting set of facebook comments?). I keep getting json response with ID only or an error with "(#10) To use 'Page Public Content Access', your use of this endpoint must be reviewed and approved by Facebook. To submit this 'Page Public Content Access' feature for review please read our documentation on reviewable features: https://developers.facebook.com/docs/apps/review." message. Any feedback on that?
/{object-id}/comments is for objects on Facebook - posts, comments, videos, etc. An external website that uses the comments plugin, doesn’t fall under that to begin with.
What you want, is this here - https://developers.facebook.com/docs/plugins/faqs#faq_1603507626630008:
Can I get comments for a URL via an API?
The comments for every URL can be accessed via the Graph API. Simply make an HTTP GET request to:
https://graph.facebook.com/v2.6/?fields=og_object{comments}&id=<YOUR_URL>&access_token=<YOUR_TOKEN>

Instagram post's video link from share url

I'm making an android app that fetches the intagram post details from the post's share url.
For eg. for getting this https://www.instagram.com/p/Bjzikp0nQG0 post details I'm using Instagram api https://api.instagram.com/oembed/?url=https://www.instagram.com/p/Bjzikp0nQG0 to get the post details.
But if the post is video I'm only getting thumbnail. I searched a bit and found instagram deprecated the media endpoint. So I found instagram graph api's media endpoint https://developers.facebook.com/docs/instagram-api/reference/media/#metadata can be used to get the information.
But the final problem is this above graph api require a numeric id of the post to get the details and nowhere in the documentation mentioned how to convert instagram post's share link to post id.

Is possible to have access to the email of the users that liked my page?

How can I get the email with the list of all the users that likes my fan page on Facebook?
I'm using Facebook graph using the url:
https://graph.facebook.com/['fan page id']?fields=likes&access_token=AAAAAAITEghMBACnbIeL5pDFKPQtjAqebZA4aRJKwX1mgFM3502cSxpSw2ssN4gG5r4arZBA2tIsASD698qB9CHaOZBTYd3Ppkj21iMypzBPITVcjLHZB
But it's only returning the number of likes.
It is not yet available.
The possible actions with facebook api for a facebook page are present here.
But it is possible to check if an user has liked your page.
Here's a Stack Overflow Question that helps you.