云市场 / 电商商品活动精选商品查询
联系电话
400-000-0387
服务商
快递100
QQ客服
2850515744
服务时间
09:00-18:00
联系邮箱

电商商品活动精选商品查询

根据平台活动id获取精选商品列表 响应迅速,返回精准,活动丰富,商品全面

¥ 原价:¥

套餐版本

0.00元/100
1.00元/1000
5.00元/5000
8.00元/10000
200.00元/500000
380.00元/1000000
有效时长
1年
联系电话
400-000-0387
服务商
快递100
QQ客服
2850515744
服务时间
09:00-18:00
联系邮箱
  • API接口
  • 产品详情
  • 交付方式
  • 电商商品活动精选商品查询
调用地址: http://cloud.kuaidi100.com/api
请求方式: POST
返回类型: JSON
API 调用: API调用说明>>
调试工具: API调试>>
请求参数(Headers)

无参数

请求参数(Query)

无参数

请求参数(Body)
名称 类型 是否必须 描述
secret_key string true 用户授权key
secret_code string true 接口编号
secret_sign string true 加密签名:md5(secret_key+secret_secret)转大写
channel string true 通道编码:taobao、jd、vip等 默认为淘宝
materialId long true 物料Id:参考产品详情中活动id说明 默认为taobao 女装活动id
page int false 查询页数,默认为:1
length int false 每页返回数据条数,默认为:60
t string true 请求时间戳
appKey string false 平台申请的授权key,不填默认用快递100的
appSecret string false 平台申请的秘钥secret,不填默认用快递100的
adzoneId long false 推广位ID,不填默认用快递100的
pid string false 媒体位ID,不填默认用快递100的
请求示例
  • curl
  • Java
  • C#
  • PHP
  • Python
                        curl http://cloud.kuaidi100.com/api -X POST -d \
"secret_key=***&secret_code=bafcae93910442808af81e71cc96d862&secret_sign=md5(***)&channel=&materialId=&page=&length=&t=&appKey=&appSecret=&adzoneId=&pid="
                        
                      
                        import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.HashMap;
import java.util.Map;

public class CloudDemo {

    public static void main (String[] args) {
        CloudDemo cloudDemo = new CloudDemo();

        Map params = new HashMap();
        params.put("secret_key", "***");
        params.put("secret_code", "bafcae93910442808af81e71cc96d862");
        params.put("secret_sign", "md5(***)");
        params.put("channel", "");
        params.put("materialId", "");
        params.put("page", "");
        params.put("length", "");
        params.put("t", "");
        params.put("appKey", "");
        params.put("appSecret", "");
        params.put("adzoneId", "");
        params.put("pid", "");

        cloudDemo.post(params);
    }

    public String post(Map params) {
        StringBuilder response = new StringBuilder("");
        BufferedReader reader = null;
        try {
            StringBuilder builder = new StringBuilder();
            for (Map.Entry param : params.entrySet()) {
                if (builder.length() > 0) {
                    builder.append('&');
                }
                builder.append(URLEncoder.encode(param.getKey(), "UTF-8"));
                builder.append('=');
                builder.append(URLEncoder.encode(String.valueOf(param.getValue()), "UTF-8"));
            }
            byte[] bytes = builder.toString().getBytes("UTF-8");
            URL url = new URL("http://cloud.kuaidi100.com/api");
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setConnectTimeout(5000);
            conn.setReadTimeout(5000);
            conn.setRequestMethod("POST");
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            conn.setRequestProperty("Content-Length", String.valueOf(bytes.length));
            conn.setDoOutput(true);
            conn.getOutputStream().write(bytes);
            reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
            String line = "";
            while ((line = reader.readLine()) != null) {
                response.append(line);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (null != reader) {
                    reader.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return response.toString();
    }
}

class MD5Utils {    private static MessageDigest mdigest = null;
    private static char digits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
    private static MessageDigest getMdInst() {
        if (null == mdigest) {
            try {
                mdigest = MessageDigest.getInstance("MD5");
            } catch (NoSuchAlgorithmException e) {
                e.printStackTrace();
            }
        }
        return mdigest;
    }

    public static String encode(String s) {
        if(null == s) {
            return "";
        }

        try {            byte[] bytes = s.getBytes();
            getMdInst().update(bytes);
            byte[] md = getMdInst().digest();
            int j = md.length;
            char str[] = new char[j * 2];
            int k = 0;
            for(int i = 0; i < j; i++) {
                byte byte0 = md[i];
                str[k++] = digits[byte0 >>> 4 & 0xf];
                str[k++] = digits[byte0 & 0xf];
            }
            return new String(str);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
}

                        
                      
                        
                        暂无示例
                      
                        <?php
    $params = "";
    $params .= 'secret_key=***'.'&';
    $params .= 'secret_code=bafcae93910442808af81e71cc96d862'.'&';
    $params .= 'secret_sign=md5(***)'.'&';
    $params .= 'channel='.'&';
    $params .= 'materialId='.'&';
    $params .= 'page='.'&';
    $params .= 'length='.'&';
    $params .= 't='.'&';
    $params .= 'appKey='.'&';
    $params .= 'appSecret='.'&';
    $params .= 'adzoneId='.'&';
    $params .= 'pid='.'&';
    $params .= substr($params, 0, -1);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_URL, 'http://cloud.kuaidi100.com/api');
    curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $result = curl_exec($ch);
    echo $result;
?>

                        
                      
                        # coding = utf-8
import sys,os
import requests,json,hashlib

params = {}
params['secret_key'] = '***'
params['secret_code'] = 'bafcae93910442808af81e71cc96d862'
params['secret_sign'] = 'md5(***)'
params['channel'] = ''
params['materialId'] = ''
params['page'] = ''
params['length'] = ''
params['t'] = ''
params['appKey'] = ''
params['appSecret'] = ''
params['adzoneId'] = ''
params['pid'] = ''
result = requests.post('http://cloud.kuaidi100.com/api', params)
print(result.text)


                        
                      
返回参数

无参数

正常返回示例
                    {
    "code": 200,
    "data": {
        "datas": [
            {
                "id": "602203425017",
                "channel": {
                    "code": "taobao",
                    "name": "淘宝"
                },
                "title": "妈妈装夏装套装棉麻短袖t恤奶奶装大码阔腿裤60中老年女装两件套",
                "description": "",
                "picture": "https://img.alicdn.com/bao/uploaded/i1/1033905306/O1CN01LAZZl81p4CCIluy8t_!!1033905306.jpg",
                "smallPic": "https://img.alicdn.com/bao/uploaded/i1/1033905306/O1CN01LAZZl81p4CCIluy8t_!!1033905306.jpg_200x200.jpg",
                "searchId": null,
                "volume": "244",
                "superiorBrand": false,
               
                "preSale": {
                    "feeText": null,
                    "startTime": 0,
                    "endTime": 0,
                    "tailStartTime": 0,
                    "tailEndTime": 0,
                    "deposit": "0"
                },
                "comments": 0
            }
        ],
        "total": 2097432,
        "pageKey": null
    },
    "message": "success",
    "time": 465
}
                
失败返回示例
                    {
    "code": 10005,
    "data": null,
    "message": "fail",
    "time": 465
}
                
状态码定义
状态码 状态码信息 描述
200 success 成功
10005 fail 失败

根据平台活动id获取精选商品列表

 

响应迅速,返回精准,活动丰富,商品全面

 

materialId为必填平台活动id

 

物料Id:淘宝参考【https://market.m.taobao.com/app/qn/toutiao-new/index-pc.html#/detail/10628875?_k=gpov9a

京东参考【https://union.jd.com/openplatform/api/v2?apiName=jd.union.open.goods.jingfen.query

 

 

返回数据说明

 

1 点击立即购买 > 2 确认并支付订单 > 3 进入云市场控制台 > 4 开始使用API