注册送短信

API: Factor/mobile - 运营商二要素


概览



factor/mobile 是 SUBMAIL 的简版身份验证 API,可以根据手机号码和姓名判断两者是否一致。需注意,此接口不会返回运营商相关信息。



URL


<主> http://tpa.mysubmail.com/factor/mobile
<备> https://tpa.mysubmail.com/factor/mobile


http 请求方式


请求方式content-type 设置
http postmultipart/form-datax-www-form-urlencodedapplication/json


signature创建规则


1.请将以下参数按照字段升序(A-Z)排列
appkey、mobile、name、timestamp

2.创建签名字符串 :以"key=value" + "&"(连接符)+ "key=value" 的方式连接所有参数

3.创建签名:拼接签名字符串示例string = "appkey=xxxx&mobile=188xxxx&name=张三& timestamp=1602792765",然后使用sha256(string)创建签名

注:中文需要使用urlencode处理后再参与创建签名


请求参数


参数类型必需/可选默认描述
appidstring必需appid,自控制台获取
timestampstring必需时间戳
namestring必需待验证的身份证姓名
mobilestring必需待验证的号码
signaturestring必需sha256 加密校验数字证书


返回参数格式



jsonString



代码示例



详情请查询demo示例文档



响应消息

API请求失败
{
        // 状态描述
        'status'  : 'error' ,
        // API流水号
        'send_id' : '"********************************",
        // API返回的状态码    详情查看 API错误代码与描述  文档
        'code'    : 1201 ,
        // API返回的描述
        'msg'     : 'Incorrect APP ID.' ,
}

API请求成功
{
        "status": "success",
        "send_id": "********************************",
        "result": {
                //true 一致   false 不一致
                "identical": true,
                //01 一致       02 不一致
                "status": "01",
                //返回结果描述
                "msg": "一致",
        }
}
identical和status 参数意义相同

//认证不一致
{
        "status": "success",
        "send_id": "********************************",
        "result": {
                "identical": false,
                "status": "02",
                "msg": "认证不一致",
        }
}


错误代码


参阅 API 错误代码