多账号互赞互评共享池 · 跨账号帖子资源同步 API
| 项目 | 说明 |
|---|---|
| 用途 | 多账号共享发帖产生的 PostID,用于脚本进行跨账号互相点赞与评论。 |
| 返回格式 | application/json |
| 编码 | UTF-8 |
| action | 方法 | 说明 | 主要参数 |
|---|---|---|---|
get_others | GET | 获取除自己以外的其他账号帖子 ID | ref(排除的账号标识) |
add | POST | 同步/追加账号的帖子 ID | JSON Body: ref, post_ids |
get_all | GET | 获取所有账号的帖子 ID 列表 | 无 |
clear | POST | 清空指定账号的帖子 ID 记录 | JSON Body: ref |
| 字段 | 是否必须 | 说明 |
|---|---|---|
ref | 是 | 账号标识(YYB 账号 ref 或手动模式唯一标识 manual_xxx)。 |
post_ids | 是 | 帖子 ID 数组,格式为数值数组(如 [101, 102])。 |
curl "https://api.sicxs.cn/i/qch.php?action=get_others&ref=user_01"curl -X POST "https://api.sicxs.cn/i/qch.php?action=add" \
-H "Content-Type: application/json" \
-d '{"ref": "user_01", "post_ids": [12345, 67890]}'import requests
url = "https://api.sicxs.cn/i/qch.php"
# 获取其他账号帖子列表
res = requests.get(url, params={"action": "get_others", "ref": "user_01"}).json()
print("其它账号帖子:", res.get("data"))
# 上传当前账号帖子
payload = {"ref": "user_01", "post_ids": [12345]}
requests.post(f"{url}?action=add", json=payload){
"code": 0,
"data": {
"user_02": [1001, 1002],
"manual_a1b2c3d4": [2001]
},
"message": "success"
}{
"code": 0,
"data": {
"updated_at": "2026-07-23 00:14:45",
"post_ids": [12345, 67890]
},
"message": "添加成功"
}