API/API.md
2025-06-02 12:02:12 +08:00

26 lines
515 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

聊天服务器API文档
1. 服务器概述
‌服务类型‌: 混合服务(HTTP + Socket)
HTTP端口: 5001 (Flask)
Socket端口: 8888
‌数据库‌: SQLite (usr.db)
2. HTTP API接口
2.1 用户注册
‌端点‌: POST /api/register
‌请求格式‌:
json
Copy Code
{
"username": "string",
"password": "string"
}
‌成功响应‌:
json
Copy Code
{
"success": true,
"message": "User registered successfully"
}
‌错误响应‌:
403: 用户名已存在
500: 服务器内部错误