全部
淘宝客
在线测试
话费优惠充值
接口地址: http://proxy-api.vv-tool.com/api/proxy/phone/charge/order
接口介绍: 话费优惠充值,分为快充和慢充,快充:调用接口成功 10 分钟内话费到账,慢充:调用接口成功后 24-72 小时内到账,详细看。点击查看详情
请求方式: POST
返回格式: JSON
接口收费: 扣账户余额
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请使用新的生成 token 接口 点击查看详情
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
order_phone | int | 是 | 充值手机号 |
num | int | 是 | 单位元 最低 100 元 慢充必须 100 的倍数 快充支持面额:100,200,300,500 |
order_type | string | 是 | 充值类型(1 慢充 2 官网直充) |
networks | string | 是 | 手机类型(1 移动 2 联通 3 电信) |
|
请求示例
order_phone:1893705xxxx
num:1
order_type:1
networks:1
请求代码示例
cURL请求代码示例
curl --location --request POST 'http://proxy-api.vv-tool.com/api/proxy/phone/charge/order' \
--header 'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx' \
--form 'order_phone="1893705xxxx"' \
--form 'num="1"' \
--form 'order_type="1"'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://proxy-api.vv-tool.com/api/proxy/phone/charge/order',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('order_phone' => '1893705xxxx','num' => '1','order_type' => '1'),
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = new MultipartBody.Builder().setType(MultipartBody.FORM)
.addFormDataPart("order_phone","1893705xxxx")
.addFormDataPart("num","1")
.addFormDataPart("order_type","1")
.build();
Request request = new Request.Builder()
.url("http://proxy-api.vv-tool.com/api/proxy/phone/charge/order")
.method("POST", body)
.addHeader("Authorization", "Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 错误码 0 为成功 |
msg | string | 返回码描述 |
msec | int | 接口执行时间 |
time | int | 接口返回时间 |
order_number | string | 订单编号 |
withholding_money | int | 消耗的点券数量(1 点券 =1 分) |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 182,
"time": 1621833888,
"data": {
"order_number": "ph2021052413244899xxx",
"withholding_money": 10000
}
}
响应代码
代码 | 代码描述 | 解决方案 |
---|---|---|
0 | 成功 | |
100 | order phone 格式是无效的 | 查看电话号输入是否正确 |
公共错误码点击查看详情