get_feeds
Retrieve a Weibo user's feeds by providing their unique identifier. Specify a limit to control the number of returned posts, simplifying access to timeline content.
Instructions
Get a Weibo user's feeds
Returns:
list[dict]: List of dictionaries containing feeds
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of feeds to return, defaults to 15 | |
uid | Yes | The unique identifier of the Weibo user |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 15,
"description": "Maximum number of feeds to return, defaults to 15",
"title": "Limit",
"type": "integer"
},
"uid": {
"description": "The unique identifier of the Weibo user",
"title": "Uid",
"type": "integer"
}
},
"required": [
"uid"
],
"type": "object"
}