产品详情
API参数 号码状态_空号检测实时精准版 调用地址: http,https://qxthstatus.api.bdymkt.comhttp://gwgp-ky2btihfgvv.n.bdcloudapi.com 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- mobile
- array
- true
- 13972565391
- 需要查询的手机号码
<dependency>
<groupId>com.baidubce</groupId>
<artifactId>api-explorer-sdk</artifactId>
<version>1.0.0</version>
</dependency>
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;
// 号码状态查询 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "http://gwgp-ky2btihfgvv.n.bdcloudapi.comhttp://gwgp-ky2btihfgvv.n.bdcloudapi.com";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
request.addQueryParameter("mobile", "");
String requestExample = " \r\nimport com.baidubce.http.ApiExplorerClient;\r\nimport com.baidubce.http.AppSigner;\r\nimport com.baidubce.http.HttpMethodName;\r\nimport com.baidubce.model.ApiExplorerRequest;\r\nimport com.baidubce.model.ApiExplorerResponse;\r\n\r\n\/\/ 百度云运营商携号转网实时查询 Java示例代码\r\npublic class RequestDemo {\r\n public static void main(String[] args) {\r\n String path = \"http:\/\/gwgp-ky2btihfgvv.n.bdcloudapi.com\/ssphone_status\";\r\n ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);\r\n request.setCredentials(\"您的 access key\", \"您的 secret key\");\r\n\r\n request.addHeaderParameter(\"Content-Type\", \"application\/json;charset=UTF-8\");\r\n \r\n request.addQueryParameter(\"mobile\", \"\");\r\n \r\n \r\n\r\n ApiExplorerClient client = new ApiExplorerClient(new AppSigner());\r\n\r\n try {\r\n ApiExplorerResponse response = client.sendRequest(request);\r\n \/\/ 返回结果格式为Json字符串\r\n System.out.println(response.getResult());\r\n } catch (Exception e) {\r\n e.printStackTrace();\r\n }\r\n }\r\n}";
request.setJsonBody(requestExample);
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
code: 0, //code 返回0表示本次查询成功
reason: "Succ", //reason 返回详细的请求状态说明码
result: {
Mobile: "13972565391", //查询的手机号码
Status: "正常", //号码状态,返回三类; 正常、停机、空号等
Area: "湖北-宜昌", //号码归属地,格式为:省-市
Is_MNP: "1", //是否携号转网,1,已携号转网;0,未转网
Init_isp: "中国移动" //所查询的号码最初的运营商(注意,如果未转网则同Now_isp一致)
Now_isp: "中国电信" //所查询的号码当前使用的运营商
}
}
失败返回示例 {
code: "-8", //code 返回非0的数字表示api查询失败,具体的原因见错误码配置
reason: "系统错误,或稍候再试" //reason 返回详细的请求状态说明码
}
错误码定义 - code
- message
- status
- 描述
- 8
- 系统错误,请稍候再试
- 8
- 系统错误,请稍候再试
- 4
- 未查询到相关信息或填写正确的手机号码再查询
- 4
- 未查询到相关信息或填写正确的手机号码再查询
- 3
- 请填写正确的手机号码
- 3
- 请填写正确的手机号码
- 2
- 查询的手机号码长度不对
- 2
- 查询的手机号码长度不对
- 0
- 成功
- --
- 成功
