产品详情
API参数 携号转网api 调用地址: http,https://xhzw.api.bdymkt.comhttp://gwgp-yxesppi5o7n.n.bdcloudapi.com/carrier 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- mobile
- string
- 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://xhzw.api.bdymkt.comhttp://gwgp-yxesppi5o7n.n.bdcloudapi.com/carrier";
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-yxesppi5o7n.n.bdcloudapi.com\/carrier\";\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: {
res: "1", //res 是否转网,0,未转网,1,已转网(明确已转网),如返回3或4则为虚拟运营商
Mobile: "13972565391", //查询的手机号码
Area: "广东-深圳", //号码归属地,格式为:省-市
Init_isp: "移动", //最初归属的运营商
Now_isp: "电信" //转网后的运营商,如果未转网,则同Init_isp一致
}
}
失败返回示例 {
code: "-8", //code 返回非0的数字表示api查询失败,具体的原因见错误码配置
reason: "系统错误,或稍候再试" //reason 返回详细的请求状态说明码
}
错误码定义 - code
- message
- status
- 描述
- 8
- 系统错误,请稍候再试
- 8
- 系统错误,请稍候再试
- 4
- 未查询到相关信息或填写正确的手机号码再查询
- 4
- 未查询到相关信息或填写正确的手机号码再查询
- 3
- 请填写正确的手机号码
- 3
- 手机号码有误
- 2
- 查询的手机号码长度不对
- 2
- 手机号码有误
- 0
- 成功
- --
- 查询成功
