I want to get all the comments of a public Facebook post through my app. My application is a service that uses application_accesstoken to call the Graph API (so there is no way to authenticate from the user's point of view).
I receive messages through the search URL of all public messages ( https://graph.facebook.com/?q=[keywords†&type=posts . This URL returns only a few comments on the returned In most cases, only 2 comments (which you can see on the profile page before clicking "View all comments XX").
Is there any way to get all these comments through my app? Calling the URL https://graph.facebook.com/userId_postId/comments?access_token= {my_application_accesstoken} returns an empty data set.
In accordance with this question (the Facebook Graph API returns false, although the publication is publicly available ), this is a mistake, since it works for comments on company posts / pages.
Can anyone confirm this? Or does anyone know if this error has already been resolved / is there a workaround for this problem?
I hope you can help me!
source share