Weibo User Video Collection API
Videos inside a collection folder. Costs 1 credit per request.
POST/api/v1/weibo/user/video-collection
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/jsoncidstringrequiredCollection id
Example: 4883992307236954
cursorstringPagination cursor from a previous response. Omit for the first page.
tab_codeintegerWhich tab of the collection to read.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.weibo.request("/api/v1/weibo/user/video-collection", {"cid": "4883992307236954"})
print(result)Response
"next_cursor": "4890787378892026"
},
"response_time": 1559
}