get_feeds
Retrieve the latest posts and updates from a specific Weibo user by providing their unique identifier and desired number of posts.
Instructions
获取指定微博用户的最新动态和帖子
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | Yes | 返回的最大动态数量 | |
uid | Yes | 微博用户的唯一标识符 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "返回的最大动态数量",
"type": "number"
},
"uid": {
"description": "微博用户的唯一标识符",
"type": "number"
}
},
"required": [
"uid",
"limit"
],
"type": "object"
}