- 注册登录
- 论坛首页
- 个人中心
- 后台管理
获取短信验证码
开发中
POST
/sms_code
请求参数
Query 参数
mobile
string
手机号
Body 参数application/json
captcha_code
string
图片验证码
captcha_code_uuid
string
图片的 uuid
mobile
string
手机号码
示例
{
"captcha_code": "string",
"captcha_code_uuid": "string",
"mobile": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/sms_code?mobile=' \
--header 'Content-Type: application/json' \
--data-raw '{
"captcha_code": "string",
"captcha_code_uuid": "string",
"mobile": "string"
}'
返回响应
🟢200成功
application/json
Body
status
string
必需
message
string
必需
示例
{
"status": "string",
"message": "string"
}