返回提交历史
Modified
user/space.md
+13
-3
XFEstudio/bilibili-API-collect
更新 user/search 接口 (#608)
* Update space.md * Update space.md * Update space.md
526e506
代码差异
1 个文件
+13
-3
@@ -2670,10 +2670,19 @@ curl -L -X GET 'https://api.bilibili.com/x/space/like/video?vmid=15858903'
2670
2670
2671
2671
### 查询用户投稿视频明细
2672
2672
2673
> https://api.bilibili.com/x/space/arc/search
2673
> https://api.bilibili.com/x/space/wbi/arc/search
2674
2675
> https://api.bilibili.com/x/space/arc/search (旧)
2676
2677
PS:旧 api 存在一些不同,比如某些情况下,例如 mid=2 时如果没有设置 Cookie 则出现非法访问(-401),但新 api 不会。
2678
2674
2679
2675
2680
*请求方式:GET*
2676
2681
2682
**header字段:**
2683
2684
必须要有 `user-agent`,且不能为 `空字符串`,以及含有 `python`、`node`、`curl` 等的字符串。
2685
2677
2686
**url参数:**
2678
2687
2679
2688
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
@@ -2788,10 +2797,11 @@ curl -L -X GET 'https://api.bilibili.com/x/space/like/video?vmid=15858903'
2788
2797
以每页2项查询用户`mid=53456`的第1页投稿视频明细
2789
2798
2790
2799
```shell
2791
curl -G 'https://api.bilibili.com/x/space/arc/search' \
2800
curl -G 'https://api.bilibili.com/x/space/wbi/arc/search' \
2792
2801
--data-urlencode 'mid=53456' \
2793
2802
--data-urlencode 'ps=2' \
2803
--data-urlencode 'pn=1' \
2804
--user-agent 'go'
2794
2805
```
2795
2806
2796
2807
<details>