Weibo User Original Posts API
A user's original (non-repost) posts. Costs 1 credit per request.
POST/api/v1/weibo/user/original-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/jsonuidstringrequiredNumeric user id.
Example: EX_UID
pageintegerResults page, 1-based. 1-500.
since_idstringPagination cursor from a previous response. Omit for the first page.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.weibo.request("/api/v1/weibo/user/original-posts", {"uid": "EX_UID"})
print(result)Response
"since_id": null,
"total": null
},
"response_time": 2501
}