API文档中心

热门接口:产品ID找同款全量维权查询万能转链字符串ID转换 (有API需求可联系本站)

获取达人直播间分享链接-适合达人调用

调用权限:核心接口会员卡调用
接口使用场景等说明:

【特别公告】

抖音精选联盟官方平台于3月13日关闭,请参考 https://www.veapi.cn/gonggao/detail_84.html 


做为平替,将由穿山甲接口替代,佣金直接在本站会员中心结算。

详情见穿山甲API说明 https://www.veapi.cn/apidoc/douyindouke/369 



获取达人直播间分享物料,包括直播间抖口令、二维码、deeplink和zlink,需要达人百应授权。

接口请求地址

环境 http 地址 https 地址
正式环境 http://api.veapi.cn/douke/kol_LiveShare 暂无

请求方式:GETPOST

请求参数

参数名称 参数类型 必填 示例值 描述
vekey String V123M56 公共参数,接口秘钥,请在会员中心获取
pid String dy_10101245197859_1726220821_2656147525 达人PID
external_info String 123_456 自定义字段,只允许 数字、字母和_,限制长度为40
need_qr_code Bool false 是否需要二维码(获取二维码将增加响应耗时,推荐false)
platform Int32 0 回流端标识 0:抖音 1:抖音极速版
access_token String 022471ed-0bbb-4107-b671-1ebcc70d317d 达人的授权token

请求示例

  • HTTP
  • PHP
  • JAVA
  • PYTHON
GET/POST  http://api.veapi.cn/douke/kol_LiveShare?vekey=xxx&author_buyin_id=6937811229809508616&pid=dy_107213597798095225100_20865_2675084869&access_token=0b547aed-0bbb-4107-b671-1ebcc70d317d 

使用curl函数,curl不是php原生库,需要安装才能使用

$api="http://api.veapi.cn/douke/kol_LiveShare?vekey=xxx&author_buyin_id=6937811229809508616&pid=dy_107213597798095225100_20865_2675084869&access_token=0b547aed-0bbb-4107-b671-1ebcc70d317d";

$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; //返回值
使用okhttp3/httpclient/jsoup/hutool,以hutool为例:

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/kol_LiveShare?vekey=xxx&author_buyin_id=6937811229809508616&pid=dy_107213597798095225100_20865_2675084869&access_token=0b547aed-0bbb-4107-b671-1ebcc70d317d";
        // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权
        //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");

        // 发送请求
        String result = HttpRequest.get(url)
                .timeout(10000)//设置超时,毫秒
                .execute().body();
        System.out.println(result);
    }
}
推荐使用 requests,支持访问http,https网页:

import requests
		
# 要访问的API网页
target_url = "http://api.veapi.cn/douke/kol_LiveShare?vekey=xxx&author_buyin_id=6937811229809508616&pid=dy_107213597798095225100_20865_2675084869&access_token=0b547aed-0bbb-4107-b671-1ebcc70d317d"

# 发送请求
response = requests.get(target_url)

# 获取页面内容
if response.status_code == 200:
	print response.text

返回值(JSON)

参数名称 参数类型 示例值 描述
dy_password String 6.923405940 抖口令
qr_code Struct - 二维码
 └─ url String https://ssddsd.jpg URL
 └─ width Int32 200 宽度
 └─ height Int32 200 高度
dy_deeplink String snssdk://live.. Deeplink,允许外部APP直接唤起抖音直播间
dy_zlink String https://z.douyin.com/xxxxxxx Zlink,允许外部APP直接唤起抖音直播间,未安装抖音应用用户,唤起抖音下载页,有效期60天

返回示例

【提示】推广链接通常有时效性,示例中的链接为创建文档时生成,仅用于展示返回结果使用,有可能已失效。
{ "error": "0", "msg": "查询成功!", "data": { "dy_deeplink": "snssdk://live..", "dy_password": "6.923405940", "dy_zlink": "https://z.douyin.com/xxxxxxx", "qr_code": { "height": "200", "url": "https://ssddsd.jpg", "width": "200" } }, "request_id": "w9y5bzu" }

错误码

如果error不为0时,请点此查看错误码表格

在线
客服

会员请加QQ群交流:

微信
咨询

加微信咨询
顶部