From 5f8c7e60b50a7a92185f3a1ff45652f87bb1cf4f Mon Sep 17 00:00:00 2001 From: QianLin-JiaXi <175724287+QianLin-JiaXi@users.noreply.github.com> Date: Tue, 11 Aug 2026 18:51:00 +0800 Subject: [PATCH] Update verification.md --- src/api/v1/verification.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/api/v1/verification.md b/src/api/v1/verification.md index b0426a3e..05a0fcb5 100644 --- a/src/api/v1/verification.md +++ b/src/api/v1/verification.md @@ -14,8 +14,10 @@ POST /v1/verification/get-verification-code ```JSON { "mobile": "12312312300", // 手机号 - "code": "123123", // 人机验证校验码 + "code": "123123", // 图像验证码校验码 + "captcha_type": "slide", // 人机验证码类别,默认/不使用此值为图像验证码,slide-滑动验证码 "id": "123", // 人机验证 ID + "x": 123, // 滑动验证码滑块x轴移动量 "platform": "windows" // 登录平台名称,一般为 windows,web 等可自定义,后端不校验 } ```