大淘客,让选品更简单! |

{{item.type_name}}:

API 市场 / 官方活动
 

官方活动
吐槽建议
应用场景:
用于获取联盟官方的最新活动进行推广,成品页面,接入快速
接口说明:
返回联盟最新的活动,当获取到活动ID后,可使用官方活动转链接口进行转链后,便可进行推广,赚取收益
使用人数: 4000+
官方活动 接口测试 建议使用通用GET方法调用
  • 接口说明
  • 更新日志
  • 接口版本号:v1.2.0

请求地址:https://openapi.dataoke.com/api/category/get-tb-topic-list 复制

请求方式:GET

公共参数:
请求参数:

注:请求参数须区分大小写

返回数据:
调用示例:
String url = "https://openapi.dataoke.com/api/category/get-tb-topic-list";
String appKey = "xxx";
String appSecret = "xxx";
TreeMap<String, String> paraMap = new TreeMap<>();
paraMap.put("version", "v1.2.0");
paraMap.put("appKey", appKey);
paraMap.put("pageId", "1");
String data = ApiClient.sendReq(url, appSecret, paraMap);

SDK调用示例
String appKey = "xxx";
String appSecret = "xxx";
DtkApiClient client = DtkApiClient.getInstance(appKey,appSecret);
DtkGetTbTopicListRequest request = new DtkGetTbTopicListRequest();
request.setPageId("1");
request.setPageSize(20);
request.setType(0);
request.setChannelId("0");
DtkApiResponse < List < DtkGetTbTopicListResponse >> execute = client.execute(request);
package main

import (
	"fmt"
	"gitee.com/dtk-developer/openapi-sdk-go/sdk"
)

func main() {
	// 1.初始化所需要的参数appKey, appSecret, version
	var (
		appKey = "xxxxxxxxxx"
		appSecret = "xxxxxxxxxx"
		version = "v1.3.1"
	)

	// 2.初始化开放平台api的客户端句柄
	oa := &sdk.OpenApi{}
	oa.AppKey = appKey
	oa.AppSecret = appSecret
	oa.Version = version
	client :=  oa.GetClient()

	// 3.准备请求参数
	params := map[string]string {
		"type": "1",
	}

	// 4.业务请求,示例使用官方活动(1元购)和淘系万能解析接口,其它开放接口使用方法相同
	resp, err := client.GetTbTopicList(params)
	if err != nil {
		panic(err)
	}
	fmt.Println(resp)

	// 复用client句柄
	params = map[string]string {
		// 指定接口版本
		"version": "v1.0.0",
		"content": "1👈¥fym8XiJU9Oi¥ https://s.click.taobao.com/Ys3TNlu  包邮 漫花抽纸10包4层加厚280张/包纸巾卫生纸家用实惠装面巾纸",
	}
	resp, err = client.ParseContent(params)
	if err != nil {
		panic(err)
	}
	fmt.Println(resp)
}
  //官方活动(1元购)
    $data = [
        'appKey' => "xxxxxxxxxxxx",
        'version' => "v1.2.1",
        ...
    ];
    $host = "https://openapi.dataoke.com/api/category/get-tb-topic-list";
    $url = $host . '?' . http_build_query($data);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    $output = curl_exec($ch);
    $a = curl_error($ch);
    if(!empty($a)){
        return json_encode(array('code'=>10003, 'msg'=>$a));
    }
    curl_close($ch);
    return $output;

    SDK调用示例
    $client = new GetTbTopicList();
    $client->setAppKey("xxxxxxxxx");
    $client->setAppSecret("xxxxxxxxxxxxxxxxxxxxxxxxx");
    $client->setVersion("v1.2.1");

    $res = $client->setParams([])->request();
返回示例:
{
	"status": 200,
	"data": {
		"time": 1588989308318,
		"code": 0,
		"msg": "成功",
		"data": [{
			"id": 69,
			"activityStartTime": "2020-03-29 00:00:00",
			"activityEndTime": "2020-12-31 23:59:59",
			"activityInfo": "拼手速,抢饿了么大额红包!",
			"type": 2,
			"activityLink": "https://s.click.ele.me/t?&e=-s021HbGgPIsOrXt9yzcPJGkJZAx7sPpaPZWijE7cGKyqKcZWu9yNtIli2QLTJB6oHx7fXuiIibO70IXOPB9hcUSlrotSkn9LRYOXhGhsA8vIfU2kdLURQongs7qIHjS7yT961gMkBDx5T8DFJvPAwcU21Z2zkSVkBsvndnyxlgU1U0t3NGzn9MuUx4wUdbuV9Ono5HJOGO83NY3zhDRfANxkzAujPonGsjXUfPabVQokj5d7zEmJ32x4VQHRB0he8tPUlfNg0sPBKkM387SPUUKVeJOYkZ9vaBmTfVRR31Wtp72auu9d6c16wCdtheo6F7cmppPaZLTOhaExV7Ga7yHeOD5fNMwyDgpbl0weh5wECgrGvpENinGMInZJbe6K7JeF1W5Osb3Hkrb39YdWcJmaouuJ&&union_lens=lensId:0b0130fe_0d9d_171f479974a_b205",
			"materialLink": "https://gw.alicdn.com/tfs/TB1W0PEx4v1gK0jSZFFXXb0sXXa-800-451.png_640x480q60_.webp",
			"activityName": "饿了么福利红包每日领"
		}]
	},
	"msg": "请求成功"
}
常见错误码:
{
    "msg":"服务器错误",
    "code":-1,
    "time":1554365022200
}
错误码列表: