全部
淘宝客
在线测试

回调地址变更


接口地址: http://proxy-api.vv-tool.com/api/proxy/update/user/notifyurl


接口介绍: 回调地址变更


请求方式: POST


返回格式: JSON


接口收费: 联系客服


频率限制: 10 次/秒


请求头参数

参数 类型 必选 示例
Authorization string 授权 access_token Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx

请求参数

参数 类型 必选 描述
phone_notify_url string 话费充值成功回调地址
erp_notify_url string erp 授权成功回调地址

请求示例

phone_notify_url:www.baidu.com

请求代码示例

cURL请求代码示例
curl --location --request POST 'http://proxy-api.vv-tool.com/api/proxy/update/user/notifyurl' \
--header 'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx' \
--form 'phone_notify_url="www.baidu.com"'
PHP请求代码示例

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'http://proxy-api.vv-tool.com/api/proxy/update/user/notifyurl',
  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('phone_notify_url' => 'www.baidu.com'),
  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("phone_notify_url","www.baidu.com")
  .build();
Request request = new Request.Builder()
  .url("http://proxy-api.vv-tool.com/api/proxy/update/user/notifyurl")
  .method("POST", body)
  .addHeader("Authorization", "Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx")
  .build();
Response response = client.newCall(request).execute();

响应参数

参数 类型 描述
code int 错误码
msg string 返回码描述
msec int 接口执行时间
time int 接口返回时间
url string 重定向地址

返回数据

{
    "code": 0,
    "msg": "成功",
    "msec": 558,
    "time": 1612403448,
    "data": {
      "url":"www.baidu.com"
    }
}

响应代码

公共错误码点击查看详情