list-group-topics
Retrieve topics from a Douban group by specifying group ID, filtering with tags or date ranges to find relevant discussions.
Instructions
list group topics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | No | from date, e.g. "2024-01-01" | |
id | No | douban group id | |
tags | No | tags, e.g. ["python"] |
Input Schema (JSON Schema)
{
"properties": {
"from_date": {
"description": "from date, e.g. \"2024-01-01\"",
"type": "string"
},
"id": {
"description": "douban group id",
"type": "string"
},
"tags": {
"description": "tags, e.g. [\"python\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}