List 获取文章列表
GET/POST /v1/web/arvow/list
- =》
{
"app_id": "xxx", //必填
"lang": "en", //必填
"category": "Technology", //可选,默认为空,表示所有文章
"limit": 10, //可选,每次拉取条数,默认为10,最大100
"offset": 0, //可选,默认为0
"page": 1, //可选,默认为1
}
注意:
分页方式支持:offset与page,任选一个分页方式即可
- 《=
{
"success": "OK",
"data": {
"lang": "en",
"list": [
{
"id": 1,
"title": "Certis launches human robots in a step towards the future",
"summary": "Certis launches the first humanoid robot in Singapore, exploring how robots can enhance security operations and facility management.",
"cover": "https://cdn.sve.cc/i/arvow/cover/e8532aeee6364cb88df96fca1389470b-w360.jpeg",
"updated_at": 1747739361
}
]
}
}