获取手机号码API
URL
https://tpa.mysubmail.com/ocl/getMobile_v2
http 请求方式
请求方式 | content-type设置 |
---|---|
http post | multipart/form-data 、x-www-form-urlencoded 、application/json |
返回参数格式
jsonString
是否需要授权
是
参数说明
参数 | 必填 | 类型 | 描述 |
---|---|---|---|
appid | 是 | string | 在 SUBMAIL 一键登录服务中创建并且认证通过的应用 ID |
signature | 是 | string | appkey +时间戳+token 拼接,并用sha256 方式加密 |
timestamp | 是 | string | UNIX 时间戳 |
token | 是 | string | SDK 中获得的取号token |
os | 是 | string | 操作系统类型,“IOS” 或 “Android” |
相应参数
取号成功
{
"code":"0", //code=0表示取号成功
"send_id":"093c0a7df143c087d6cba9cdf0cf3738", //接口请求唯一标识
"mobile":"13888888888" //手机号码
}
取号失败
{
"code":"1113", //code=1113表示运营商错误
"send_id":"093c0a7df143c087d6cba9cdf0cf3738", //接口请求唯一标识
"msg":"Operator error:103101" //运营商错误+运营商错误代码
}