Facebook Page Posts API
The most recent top posts on a page: text, timestamp, reaction total and breakdown by type, comment and share counts, attached media and permalink. Returns the current top posts, not the full historical feed. Costs 1 credit per request.
POST/api/v1/facebook/profile/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/profile/posts", {})
print(result)Response
"count": 1
},
"response_time": 4130
}