Weibo User Videos API
A user's published videos. Costs 1 credit per request.
POST/api/v1/weibo/user/videos
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
cursorstringPagination cursor from a previous response
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.weibo.request("/api/v1/weibo/user/videos", {"uid": "EX_UID"})
print(result)Response
"next_cursor": "5327480304176370"
},
"response_time": 1795
}