How to get all the comments of a user's public Facebook post?
I've tried gettinggraph.facebook.com/v20.0/1*************3_7*************1/comments
, where1*************3
is a valid user id, and7*************1
is a valid (and public) post id.
Unfortunately, the Graph API Explorer shows an OAuthException
:
{ "error": { "message": "Unsupported get request. Object with ID '1*************3_7*************1' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api", "type": "GraphMethodException", "code": 100, "error_subcode": 33, "fbtrace_id": "A*********************Z" } }
How could I get all the comments of a user's public Facebook post?
I'd prefer a Graph API (or other official Meta tool) solution.
But I'm open to other approaches too.