Weibo User Fans API
A user's followers. Costs 1 credit per request.
POST/api/v1/weibo/user/fans
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: 1722594714
pageintegerResults page, 1-based. 0-500.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.weibo.request("/api/v1/weibo/user/fans", {"uid": "1722594714"})
print(result)Response
"next_cursor": "24",
"total": 41007002
},
"response_time": 1496
}