DEVELOPER ACCESS

API 上传

发送 JSON 创建图集。images 支持图片 URL、Data URL 或纯 Base64。

POST /api/galleries
curl -X POST https://images.gowebs.top/api/galleries \
  -H "Content-Type: application/json" \
  -d '{
    "topic": "城市夜行",
    "images": [
      "https://example.com/night-01.jpg",
      "data:image/png;base64,iVBORw0..."
    ]
  }'

远程 URL 会直接展示;Base64 图片会保存到服务器。