Facebook Post Comments API
The top visible comments on a post: comment id, author, text, reaction count and time. Returns the top comments, not the full comment thread or nested replies. Costs 1 credit per request.
POST/api/v1/facebook/post/comments
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonRequest
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.facebook.request("/api/v1/facebook/post/comments", {})
print(result)Response
"comments": [],
"top_comment_count": 0,
"total_comment_count": 2331
},
"response_time": 4617
}