获取用户CSDN文章列表
阅读时间:
1
min 文章字数:
226
字 发布日期:
2025-06-27
最近更新:
2025-09-09
阅读量:
-
请求
username:填写需要获取的csdn博主用户名
bash
https://blog.csdn.net/community/home-api/v1/get-business-list?businessType=blog&size=100&page=1&&username=kuaishoutech响应
根据响应返回的文章列表,通过匹配url获取文章的title、description、tags 响应示例:
json
{
"code": 200,
"message": "success",
"traceId": "7c0c9d4b-b7b9-47f1-b0f6-283659ddf70a",
"data": {
"list": [
{
"articleId": 145606418,
"title": "快手Java透明协程:实现零代码修改提升30%QPS",
"description": "快手基于社区开源版本自研了Java17透明协程技术,实现对业务无侵入的同时,吞吐能力提升30%以上。本文将深入剖析快手协程技术的背后原理与架构演进。",
"url": "https://blog.csdn.net/kuaishoutech/article/details/145606418",
"type": 1,
"top": true,
"forcePlan": false,
"viewCount": 4344,
"commentCount": 3,
"editUrl": "https://mp.csdn.net/console/editor/html/145606418",
"postTime": "2025-02-13 10:36:29",
"diggCount": 23,
"formatTime": "2025.02.13",
"picList": [
"https://i-blog.csdnimg.cn/direct/becf795479d741998f2ecbd5617f8a94.jpeg"
],
"collectCount": 22,
"tags": [
"快手",
"java",
"协程",
"Dragonwell"
],
"hasInsCode": false
}
],
"total": 79
}
}