验证验证码
优质
小牛编辑
137浏览
2023-12-01
接口说明
验证验证码
如需调用,请访问 开发者文档 来查看详细的接口使用说明
该接口仅开放给已获取SDK的开发者
如开启https功能,请求地址的协议应改为https,如:https://www.example.com/wish3dearth/api/access/v1.0.0/getLicenseInfo
API地址
GET
/authcenter/api/verify/v1.0.0/checkCaptcha
是否需要登录
否
请求字段说明
参数 | 类型 | 请求类型 | 是否必须 | 说明 |
---|---|---|---|---|
sessionId | string | query | 否 | Session Id(同域名请求不需要传) |
vaildCode | string | query | 是 | 验证码 |
响应字段说明
无
响应成功示例
无
响应失败示例
无
响应接受类型
application/json
响应状态码
HTTP状态码 | 原因 |
---|---|
0 | 成功 |
200 | OK |
204 | No Content |
401 | Unauthorized |
403 | Forbidden |
10004 | 密码不能为空 |
10020 | 用户账户不能为空 |
99998 | 非法请求 |
99999 | 服务器异常 |
示例代码
$.ajax({ url: '/authcenter/api/verify/v1.0.0/checkCaptcha?sessionId=&vaildCode=', type: 'GET', data: '', dataType: 'text', cache: false, contentType: 'application/json', xhrFields: { withCredentials: true }, crossDomain: true, success:function(data){ // 成功返回值 }, error:function(XMLHttpRequest, textStatus, errorThrown){ } })