Facebook Group Posts API
The top posts in a public group: author, text, timestamp, reactions, comment and share counts, media and permalink. Returns the current top posts, not the full feed. Accepts a group URL or group id. Costs 1 credit per request.
POST/api/v1/facebook/group/posts
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/group/posts", {})
print(result)Response
"group_id": "361381807400278",
"count": 1
},
"response_time": 5193
}