# 三网手机实名制认证接口


# 接口地址

https://cms.1cloudsp.com/open/api/qry/data/44

请求方式:POST,以表单的形式传递参数,content-type:application/x-www-form-urlencoded。编码采用UTF-8编码。


# 请求参数

参数名 是否必填 类型 说明
accesskey String 秘钥key
secret String 秘钥secret
realname String 姓名
idcard String 身份证
mobile String 手机号码

# 返回参数

参数名 类型 说明
realname String 姓名
idcard String 身份证号码
mobile String 手机号码
res int 匹配结果,1:匹配 2:不匹配
message String 结果

# 返回示例

{
    "msg": "成功",
    "data": {
        "realname": "小明",
        "mobile": "156****9794",
        "idcard": "34082**********492X",
        "res": 1,
        "resmsg": "三要素身份验证一致",
        "type": "联通",
        "province": "安徽省",
        "city": "合肥市"
    },
    "ret": 0
}