接口使用场景等说明:【特别公告】
抖音精选联盟官方平台于3月13日关闭,请参考 https://www.veapi.cn/gonggao/detail_84.html
做为平替,将由穿山甲接口替代,佣金直接在本站会员中心结算。
详情见穿山甲API说明 https://www.veapi.cn/apidoc/douyindouke/369
该接口用于查询达人抖客红包详情,需要获取抖客授权
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/douke/distribution_RedpackDetailList | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
buyin_id | String | 是 | 1234567 | 查询达人的百应ID |
page | Int64 | 否 | 1 | 起始值为1,不传默认值为1 |
page_size | Int64 | 否 | 10 | 最大值20,不传默认值为10 |
redpack_name | String | 否 | 红包 | 红包名称 |
start_date | String | 否 | 2006-01-02 | 投放开始日期,格式2006-01-02 |
end_date | String | 否 | 2006-01-02 | 投放结束日期,格式2006-01-02 |
GET/POST http://api.veapi.cn/douke/distribution_RedpackDetailList?vekey=xxx&buyin_id=6937811229809508616
$api="http://api.veapi.cn/douke/distribution_RedpackDetailList?vekey=xxx&buyin_id=6937811229809508616"; $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/distribution_RedpackDetailList?vekey=xxx&buyin_id=6937811229809508616"; // 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/distribution_RedpackDetailList?vekey=xxx&buyin_id=6937811229809508616" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
redpack_id | String | 123456789 | 红包ID |
name | String | 红包 | 红包名称 |
credit_type | Int32 | 1:固定面额 2:随机面额 | 红包面额类型 |
left_amount | Int64 | 1000 | 剩余金额,单位分 |
left_num | Int64 | 10 | 剩余个数 |
start_apply_time | String | 2022-09-27 00:00:00 | 领取开始有效时间 |
end_apply_time | String | 2022-09-27 00:00:00 | 领取结束有效时间 |
use_start_time | String | 2022-09-27 00:00:00 | 用户使用开始有效时间 |
use_end_time | String | 2022-09-27 00:00:00 | 用户使用结束使用有效时间 |
status | Int32 | 1 | 1:未生效,待投放;2:生效中;3:已领完;4:已过期 |
total | Int64 | 10 | 总数 |
{ "error": "0", "msg": "查询成功!", "data": { "redpack_list": [ { "credit_type": "1:固定面额 2:随机面额", "end_apply_time": "2022-09-27 00:00:00", "left_amount": "1000", "left_num": "10", "name": "红包", "redpack_id": "123456789", "start_apply_time": "2022-09-27 00:00:00", "status": "1", "use_end_time": "2022-09-27 00:00:00", "use_start_time": "2022-09-27 00:00:00" } ], "total": 10 }, "request_id": "Gh6zYKj" }