服务器运行正常!
题目总数: 298
POST /get-questions - 获取8道题目POST /track-event - 事件统计POST /hello - 测试接口GET /stats - 获取题目统计信息GET /global - 获取全局配置GET /welcome - 获取欢迎引导内容
POST /get-questions
Content-Type: application/json
{
"seen_question_ids": [1001, 1002, 1003]
}
GET /stats?seen_ids=1001,1002,1003
POST /track-event
Content-Type: application/json
{
"event_name": "user_login",
"user_id": "user123",
"session_id": "session456",
"app_version": "1.0.0",
"params": {
"login_method": "huawei_id",
"device_type": "mobile",
"network": "wifi"
}
}
GET /global
返回格式:
{
"success": true,
"data": {
"analytics_level": 0
}
}