| 项目 | 说明 |
|---|---|
| 请求方式 | POST |
| 请求路径 | /mj/submit/upload-discord-images |
| 认证方式 | Authorization: Bearer {API_KEY} |
| Content-Type | application/json |
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
base64Array | string[] | 是 | 图片 base64 数组(dataURL 格式) |
| 参数 | 类型 | 说明 |
|---|---|---|
code | int | 状态码,1 表示成功 |
description | string | 状态描述 |
result | string[] | 上传后的图片链接数组 |
{
"code": 1,
"description": "成功",
"result": [
"https://cdn.discordapp.com/attachments/xxx/xxx/image.png"
]
}