- NapCat 接口文档
- 用户
- 消息
- 群组
- 群踢人POST
- 群禁言POST
- 获取群系统消息POST
- 获取群精华消息POST
- 全体禁言POST
- 设置群头像POST
- 设置群管理POST
- 设置群精华消息POST
- 设置群成员名片POST
- 删除群精华消息POST
- 设置群名POST
- 退群POST
- _发送群公告POST
- _获取群公告POST
- 设置群头衔POST
- 上传群文件POST
- 处理加群请求POST
- 获取群信息POST
- 获取群信息exPOST
- 创建群文件文件夹POST
- 删除群文件POST
- 删除群文件夹POST
- 获取群文件系统信息POST
- 获取群根目录文件列表POST
- 获取群子目录文件列表POST
- 获取群文件链接POST
- 获取群列表POST
- 获取群成员信息POST
- 获取群成员列表POST
- 获取群荣誉POST
- 获取群 @全体成员 剩余次数POST
- 获取群过滤系统消息POST
- 设置群打卡POST
- 发送群打卡POST
- 获取AI语音人物POST
- 发送群AI语音POST
- 获取AI语音POST
- 系统
- 未定义
设置群头像
POST
/set_group_portrait
请求参数
Body 参数application/json
group_id
group_id
One of
file
string
必需
示例
{
"group_id": 123456,
//网络路径
"file": "http://i0.hdslb.com/bfs/archive/c8fd97a40bf79f03e7b76cbc87236f612caef7b2.png"
// 本地路径
//"file": "file://D:/a.jpg"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/set_group_portrait' \
--header 'Content-Type: application/json' \
--data-raw '{
"group_id": 123456,
//网络路径
"file": "http://i0.hdslb.com/bfs/archive/c8fd97a40bf79f03e7b76cbc87236f612caef7b2.png"
// 本地路径
//"file": "file://D:/a.jpg"
}'
返回响应
🟢200成功
application/json
Body
status
enum<string>
必需
枚举值:
ok
retcode
number
必需
data
object
必需
result
string
必需
errMsg
string
必需
message
string
必需
wording
string
必需
echo
string | null
必需
示例
{
"status": "ok",
"retcode": 0,
"data": {
"result": 0,
"errMsg": "success"
},
"message": "",
"wording": "",
"echo": null
}
修改于 2024-10-29 15:06:10