接口使用场景等说明:【特别公告】
抖音精选联盟官方平台于3月13日关闭,请参考 https://www.veapi.cn/gonggao/detail_84.html
做为平替,将由穿山甲接口替代,佣金直接在本站会员中心结算。
详情见穿山甲API说明 https://www.veapi.cn/apidoc/douyindouke/369
本接口用于查询抖客获取近30天内奖励订单(新客+召回用户)
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/douke/douke_RewardOrders | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
page | Int64 | 否 | 1 | 页数,默认从1开始 |
page_size | Int64 | 否 | 20 | 每页订单数目,默认20,最大为100 |
pid | String | 否 | dy_123_445_4995 | 独立抖客PID |
start_date | String | 否 | 20230308 | 查询开始日期,格式:20230308,奖励订单只保存近30天的订单 |
end_date | String | 否 | 20230308 | 查询结束日期,格式:20230308,奖励订单只保存近30天的订单 |
distribution_type | Int64 | 否 | 0 | 默认全部,0:全部 1:商品分销 2: 直播间分销 3: mix自建活动页分销 4:频道页分销 99:其他 |
GET/POST http://api.veapi.cn/douke/douke_RewardOrders?vekey=xxx&start_date=20230301&end_date=20230325&pid=dy_217213597798095225100_20865_2675084869
$api="http://api.veapi.cn/douke/douke_RewardOrders?vekey=xxx&start_date=20230301&end_date=20230325&pid=dy_217213597798095225100_20865_2675084869"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/douke/douke_RewardOrders?vekey=xxx&start_date=20230301&end_date=20230325&pid=dy_217213597798095225100_20865_2675084869"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/douke/douke_RewardOrders?vekey=xxx&start_date=20230301&end_date=20230325&pid=dy_217213597798095225100_20865_2675084869" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
pay_date | String | 20230308 | 成交日期 |
promotion_info | String | dy_123_445_4995 | 推广位信息 |
reward_order_id | String | 12345678 | 奖励订单ID |
product_id | String | 12345678 | 成交商品ID |
product_name | String | 测试商品 | 成交商品名称 |
pay_amount | Int64 | 100 | 成交金额 |
reward_type | String | 拉新 | 奖励类型:拉新/召回 |
total | Int64 | 100 | 查询的奖励订单总数 |
{ "error": "0", "msg": "查询成功!", "data": { "reward_orders": [], "total": 0 }, "request_id": "9PXfqkt" }