万邦抖音获得视频评论 API 返回值说明

item_review-获得视频评论 [查看演示] API测试工具 注册开通

douyin.item_review(Ver:1.0.0-4.0)

  • douyin.item_review-1.0.0-4.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/douyin/item_review

    名称 类型 必须 描述
    keyString调用key(必须以GET方式拼接在URL中)
    secretString调用密钥
    api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
    cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
    result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
    langString[cn,en,ru]翻译语言,默认cn简体中文
    versionStringAPI版本
    请求参数

    请求参数:item_id=7012906888161496331

    参数说明:item_id:视频id

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    items
    items[] 0 根据视频id获取评论
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, true);
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
    var_dump(curl_exec($curl));
    ?>
    <?php
    //定义缓存目录和引入文件
    define("DIR_RUNTIME","runtime/");
    define("DIR_ERROR","runtime/");
    define("SECACHE_SIZE","0");
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
    include ("ObApiClient.php");
    
    $obapi = new otao\ObApiClient();
    $obapi->api_url = "http://api-gw.onebound.cn/";
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
    $obapi->api_key = "<您自己的apiKey>";
    $obapi->api_secret = "<您自己的apiSecret>";
    $obapi->api_version ="";
    $obapi->secache_path ="runtime/";
    $obapi->secache_time ="86400";
    $obapi->cache = true;
    
    $api_data = $obapi->exec(
                    array(
    	                "api_type" =>"douyin",
    	                "api_name" =>"item_review",
    	                "api_params"=>array (
      'item_id' => '7012906888161496331',
    )
                    )
                );
     var_dump($api_data);
    ?>
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.net.URL;
    import java.nio.charset.Charset;
    import org.json.JSONException;
    import org.json.JSONObject;
    import java.io.PrintWriter;
    import java.net.URLConnection;
    
    public class Example {
    	private static String readAll(Reader rd) throws IOException {
    		StringBuilder sb = new StringBuilder();
    		int cp;
    		while ((cp = rd.read()) != -1) {
    			sb.append((char) cp);
    		}
    		return  sb.toString();
    	}
    	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		conn.setDoOutput(true);
    		conn.setDoInput(true);
    		PrintWriter out = new PrintWriter(conn.getOutputStream());
    		out.print(body);
    		out.flush();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static void main(String[] args) throws IOException, JSONException {
    		// 请求示例 url 默认请求参数已经URL编码处理
    		String url = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331";
    		JSONObject json = getRequestFromUrl(url);
    		System.out.println(json.toString());
    	}
    
    }
    //using System.Net.Security;
    //using System.Security.Cryptography.X509Certificates;
    private const String method = "GET";
    static void Main(string[] args)
    {
    	String bodys = "";
    	// 请求示例 url 默认请求参数已经做URL编码
    	String url = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331";
    	HttpWebRequest httpRequest = null;
    	HttpWebResponse httpResponse = null; 
    	if (url.Contains("https://"))
    	{
    		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    	}
    	else
    	{
    		httpRequest = (HttpWebRequest)WebRequest.Create(url);
    	}
    	httpRequest.Method = method;
    	if (0 < bodys.Length)
    	{
    		byte[] data = Encoding.UTF8.GetBytes(bodys);
    		using (Stream stream = httpRequest.GetRequestStream())
    		{
    		stream.Write(data, 0, data.Length);
    		}
    	}
    	try
    	{
    		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    	}
    	catch (WebException ex)
    	{
    		httpResponse = (HttpWebResponse)ex.Response;
    	}
    	Console.WriteLine(httpResponse.StatusCode);
    	Console.WriteLine(httpResponse.Method);
    	Console.WriteLine(httpResponse.Headers);
    	Stream st = httpResponse.GetResponseStream();
    	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    	Console.WriteLine(reader.ReadToEnd());
    	Console.WriteLine("\n");
    }
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    {
    	return true;
    }
    # coding:utf-8
    """
    Compatible for python2.x and python3.x
    requirement: pip install requests
    """
    from __future__ import print_function
    import requests
    # 请求示例 url 默认请求参数已经做URL编码
    url = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331"
    headers = {
        "Accept-Encoding": "gzip",
        "Connection": "close"
    }
    if __name__ == "__main__":
        r = requests.get(url, headers=headers)
        json_obj = r.json()
        print(json_obj)
    url := fmt.Sprintf("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331", params)
    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("Authorization", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()
    
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(string(body))
    
    fetch('https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"item_id":"7012906888161496331"})// request parameters here
    })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));
    
    <script src="js/obapi.js"></script>
    <script type="text/javascript">
    obAPI.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        api_url: "https://api-gw.onebound.cn", // 
        api_key: "<您自己的apiKey>", // 必填,
        api_secret: "<您自己的apiSecret>", //
        lang: "cn", // 
        timestamp: "", // 必填,生成签名的时间戳
        nonceStr: "", // 必填,生成签名的随机串
        signature: "",// 必填,签名
        jsApiList: [] // 必填,需要使用的JS接口列表
    });
    </script>
    <div id="api_data_box"></div>
    <script type="text/javascript">
    obAPI.exec(
         {
         "api_type":"douyin",
         "api_name" : "item_review",
         "api_params": {"item_id":"7012906888161496331"}//item_id=7012906888161496331,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331")
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    request = Net::HTTP::Get.new(url)
    response = http.request(request)
    puts response.read_body 
    
    import Foundation
     
    let url = URL(string: "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331")!
    let task = URLSession.shared.dataTask(with: url) { data, response, error in
        guard let data = data else {
            print("Error: No data was returned")
            return
        }
         
        if let data = String(data: data, encoding: .utf8) {
            print(data)
        }
    }
    task.resume()
    
    NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331"];
    
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    
    [request setHTTPMethod:@"GET"];
    NSError *error;
    NSURLResponse *response;
    
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    
    NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"%@",result);
    
    #include<stdio.h>
    #include <stdlib.h>
    #include<string.h>
    #include<curl/curl.h>
    
    int main(){
      CURL *curl;  
      CURLcode res;   
      struct curl_slist *headers=NULL; 
    
      char url[] = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331";
      curl_global_init(CURL_GLOBAL_ALL); 
      curl = curl_easy_init(); 
    
      if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL,url);
        headers = curl_slist_append(headers, "Content-Type: application/json"); 
    
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
        res = curl_easy_perform(curl);
    
        if(res != CURLE_OK){
          printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
        }
        curl_easy_cleanup(curl);          
      }
      curl_global_cleanup();
      return 0;
    }
    
    #include<iostream>
    #include<string>
    #include<curl/curl.h>
    
    using namespace std;
    
    static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
    {
        std::size_t realSize = size *nmemb;
        auto *realPtr = reinterpret_cast<char *>(ptr);
    
        for (std::size_t i=0;i<realSize;++i) {
            *(stream) += *(realPtr + i);
        }
    
        return realSize;
    }
    
    int main(){
    
         CURL *curl;
         CURLcode result;
         string readBuffer;
         curl = curl_easy_init();
    
         if(curl) {
    
             curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331");
             curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
             curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
             curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
    
             result = curl_easy_perform(curl);
    
             if(result == CURLE_OK) {
                 cout<<readBuffer<<endl;
             }else{
                 cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
             }
    
             curl_easy_cleanup(curl);
         }
         return 0;
    }
    
    const https = require("https");
    
    https.get("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331", (resp) => {
      let data = "";
    
      resp.on("data", (chunk) => {
        data += chunk;
      });
    
      resp.on("end", () => {
        console.log(data);
      });
    }).on("error", (err) => {
      console.log("Error: " + err.message);
    });
    
    import java.net.HttpURLConnection
    import java.net.URL
    
    fun main() {
        val url = URL("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331")
        val con = url.openConnection() as HttpURLConnection
        con.requestMethod = "GET"
    
        val responseCode = con.responseCode
        if (responseCode == HttpURLConnection.HTTP_OK) { // success
            val inputLine = con.inputStream.bufferedReader().use { it.readText() }
            println(inputLine)
        } else {
            println("GET request failed")
        }
    }
    
    use std::io::{self, Read};
    use reqwest;
    
    fn main() -> io::Result<()> {
    
        let mut resp = reqwest::get("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331")
    content(r)
    url = "https://api-gw.onebound.cn/douyin/item_review/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=7012906888161496331";
    response = webread(url);
    disp(response);
    
    响应示例
    {
            "page": "1",
            "real_total_results": 7217,
            "total_results": 2000,
            "page_size": 20,
            "pagecount": 361,
            "item": [
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 15:54:58",
                    "consed": false,
                    "content": "植护大品牌。值得信赖",
                    "id": 1301183861153595682,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/a7cdc7a8dd7ae912594ed9071a52e49d~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=mFxCTXrbleUKPxzMMB%2BxYJ%2BM9iw%3D",
                            "uri": "douyin-user-image-file/a7cdc7a8dd7ae912594ed9071a52e49d",
                            "url": "https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/a7cdc7a8dd7ae912594ed9071a52e49d~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=4jU8d1Ijin42KJA4jMzWOR%2F3Lv0%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv4.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv4.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        },
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/regular_customer.png",
                                "url_list": [
                                    "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/regular_customer.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 38
                            },
                            "tag_type": 1
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/229c77efc170705f8a6aaedfaa61e65c.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "A**x"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 14:43:57",
                    "consed": false,
                    "content": "就冲这几个字,买买买买😄😄😄",
                    "id": 6553506922976887055,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/a7dc57ffecc96b6f41435f1ec529fab4~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=OSNipIX9q5%2F5huG4if%2FvG2l7tn0%3D",
                            "uri": "douyin-user-image-file/a7dc57ffecc96b6f41435f1ec529fab4",
                            "url": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/a7dc57ffecc96b6f41435f1ec529fab4~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=eN%2BiqoT%2B%2FYQFspi3nnyS6yO1lW8%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-逢考B过【送4个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv4.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv4.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        },
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/regular_customer.png",
                                "url_list": [
                                    "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/regular_customer.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 38
                            },
                            "tag_type": 1
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ab74813686b8467eb05953d35353f0bf.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "娜**j"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 14:24:08",
                    "consed": false,
                    "content": "纸巾不错好用",
                    "id": 694323810022900019,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/c4e71ebbb1d933b57ae4ba51808476db.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "l**6"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 13:02:58",
                    "consed": false,
                    "content": "不好太薄了,没别人家厚点",
                    "id": 7491944495388098867,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 11,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png",
                        "url_list": [
                            "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 4,
                    "rank_product": 3,
                    "rank_shop": 4,
                    "rank_type": 2,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-蝴蝶结【送4个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c338c70e8d959d445438ffed97f4ce99.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "冷**6"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 12:37:51",
                    "consed": false,
                    "content": "性价比:",
                    "id": 4839324316271116585,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv1.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv1.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/60e940074453fd9367a22659bcf3f43b.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "心**x"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 11:15:45",
                    "consed": false,
                    "content": "发货速度:比蜗牛还慢
        性价比:质量差
        服务态度:差
        包装:一般",
                    "id": 8986717359054242086,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 5,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png",
                        "url_list": [
                            "http://p9-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 1,
                    "rank_product": 1,
                    "rank_shop": 3,
                    "rank_type": 3,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv2.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv2.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/c9634ca02d41756c92e6bab038081a46.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "戴**8"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "0",
                    "comment_time": "2024-03-11 09:38:40",
                    "consed": false,
                    "content": "说的是大提的,回来还是小题的",
                    "id": 6414036072963309835,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 13,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png",
                        "url_list": [
                            "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 3,
                    "rank_shop": 5,
                    "rank_type": 2,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-逢考B过【送4个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv1.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv1.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/ab7a986fcd88d32507ddc60ddccac576.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "昊**r"
                },
                {
                    "app_id": 7386,
                    "aweme_reply_count": 0,
                    "browse_count": "3",
                    "comment_time": "2024-03-10 18:49:43",
                    "consed": false,
                    "content": "包装很好,物流很快,纸张也好",
                    "id": 8500785998664450358,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p6.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-file_4fdd3ea711745ed316f2b49c17671875.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "蜜**n"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "3",
                    "comment_time": "2024-03-10 18:43:37",
                    "consed": false,
                    "content": "发货速度:",
                    "id": 3762999188963737919,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p26.douyinpic.com/aweme/720x720/fb510006ea8c4459c9b2.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "冬**0"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "118",
                    "comment_time": "2024-03-10 16:28:33",
                    "consed": false,
                    "content": "好的",
                    "id": 6537920248375492905,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/regular_customer.png",
                                "url_list": [
                                    "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/regular_customer.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 38
                            },
                            "tag_type": 1
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p26.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4145f171514a444f8aac70bc4ec63ce7.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "小**f"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "6",
                    "comment_time": "2024-03-10 15:31:30",
                    "consed": false,
                    "content": "一直用植护的,性价比高,不错的。",
                    "id": 3045378739014811955,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/ac7eedc36dc3ec59111719aed555a942~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=7UHjG6UrxvPlDXot3fupwOOKtTU%3D",
                            "uri": "douyin-user-image-file/ac7eedc36dc3ec59111719aed555a942",
                            "url": "https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/ac7eedc36dc3ec59111719aed555a942~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=6CTzGpst6%2F1%2FxyuF%2F9U%2BZ7avfyY%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv3.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv3.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/ed944b9c45de9e3a00c3e118c1327dfe.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "陈**2"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "107",
                    "comment_time": "2024-03-10 15:29:09",
                    "consed": false,
                    "content": "还好吧,不是很实诚,一分钱一分货吧",
                    "id": 2919277947187675427,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p26.douyinpic.com/aweme/720x720/aweme-avatar/f9d87917b6459173062643a58efacf7a.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "何**t"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "105",
                    "comment_time": "2024-03-10 13:19:54",
                    "consed": false,
                    "content": "和我买的29.912包大一点点,甚至还没有那个好用!全各位最好别买!小包的!",
                    "id": 7908703384994267418,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p6-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/685aded868a3ce0fd2b061afd6386aab~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=E%2BSBx5kw1c%2FoGSzNoabTFasFAoY%3D",
                            "uri": "douyin-user-image-file/685aded868a3ce0fd2b061afd6386aab",
                            "url": "https://p6-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/685aded868a3ce0fd2b061afd6386aab~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=g9HomLhq%2BHXlotgL9%2Fed0Sue%2Fco%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 9,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png",
                        "url_list": [
                            "http://p9-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 1,
                    "rank_shop": 3,
                    "rank_type": 3,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-逢考B过【送4个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv1.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv1.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/6ccf1527d0b7cf691adcbbe5725c52b2.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "清**x"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "186",
                    "comment_time": "2024-03-10 12:17:20",
                    "consed": false,
                    "content": "回购很多次了,性价比超高,纸张厚实,外包装还好看",
                    "id": 5180929387075469577,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/5d521e3c759a9afa40d0363eddbf0996~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=e%2BX4NS4cpE6G%2BVqC4b5p%2FtFDUt8%3D",
                            "uri": "douyin-user-image-file/5d521e3c759a9afa40d0363eddbf0996",
                            "url": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/5d521e3c759a9afa40d0363eddbf0996~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=SelNFK%2Bc4Wk451m1XNtbaywBVfc%3D",
                            "width": 0
                        },
                        {
                            "height": 0,
                            "thumbnail": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/0c120ba60943d29363952dd6d519738c~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=MWeXZO0TV1nVvLnCxido6gHdPAQ%3D",
                            "uri": "douyin-user-image-file/0c120ba60943d29363952dd6d519738c",
                            "url": "https://p6-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/0c120ba60943d29363952dd6d519738c~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=R8c60Bazeam0XKvWWH19%2FGEy4Ps%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv3.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv3.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/ab7a986fcd88d32507ddc60ddccac576.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "Z**b"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "111",
                    "comment_time": "2024-03-10 11:46:54",
                    "consed": false,
                    "content": "发货速度:",
                    "id": 4511018940222734642,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "tags": [
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/comment_level/lv1.png",
                                "url_list": [
                                    "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/comment_level/lv1.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 31
                            },
                            "tag_type": 2
                        },
                        {
                            "tag_icon": {
                                "height": 14,
                                "uri": "tos-cn-i-fceoirpogb/regular_customer.png",
                                "url_list": [
                                    "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/regular_customer.png~tplv-fceoirpogb-image.image"
                                ],
                                "width": 38
                            },
                            "tag_type": 1
                        }
                    ],
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/6ccf1527d0b7cf691adcbbe5725c52b2.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "玥**x"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "39",
                    "comment_time": "2024-03-10 11:05:20",
                    "consed": false,
                    "content": "一直以来都是用这款纸巾",
                    "id": 4909587509480472869,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-蝴蝶结【送4个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMIIZKwAEeSne83pAAA2LfbCDfC8z4DWAIoQ47.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "星**z"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "184",
                    "comment_time": "2024-03-10 08:40:35",
                    "consed": false,
                    "content": "质量一般",
                    "id": 1080753766594101541,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 9,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png",
                        "url_list": [
                            "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 3,
                    "rank_product": 3,
                    "rank_shop": 3,
                    "rank_type": 2,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/c4e71ebbb1d933b57ae4ba51808476db.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "和**6"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "216",
                    "comment_time": "2024-03-10 00:13:10",
                    "consed": false,
                    "content": "别买 一擦手掉渣",
                    "id": 4001619600184705334,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 9,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png",
                        "url_list": [
                            "http://p9-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/263bcb0d5377ea55337adcf0501ec021.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 1,
                    "rank_shop": 3,
                    "rank_type": 3,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-悦色蓝款【送4个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_45454026314a501e9470b438e796e2d4.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "快**b"
                },
                {
                    "app_id": 2329,
                    "aweme_reply_count": 0,
                    "browse_count": "288",
                    "comment_time": "2024-03-09 23:23:21",
                    "consed": false,
                    "content": "还不错",
                    "id": 4566399144020771110,
                    "is_anonymous": true,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "photos": [
                        {
                            "height": 0,
                            "thumbnail": "https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/7a28c91ec2887ae6aad37b99d2bb476d~tplv-fceoirpogb-re_cp:240:0:q75.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_thumbnail&x-expires=1710749843&x-signature=3Uem05Lri3q8c%2BqmehC1a2Hjgyo%3D",
                            "uri": "douyin-user-image-file/7a28c91ec2887ae6aad37b99d2bb476d",
                            "url": "https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/7a28c91ec2887ae6aad37b99d2bb476d~tplv-fceoirpogb-re_cp:960:0:q90.webp?biz_tag=ec_comment&lk3s=b727fd2f&scene_tag=ec_comment_large&x-expires=1710749843&x-signature=RcUsZ93HiQJmtYe9ljh3%2F2zrudU%3D",
                            "width": 0
                        }
                    ],
                    "product_id": 3532801611376266422,
                    "rank": 11,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png",
                        "url_list": [
                            "http://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/5435df963d986562ec7f55405d721902.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 4,
                    "rank_product": 3,
                    "rank_shop": 4,
                    "rank_type": 2,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "2提-蝴蝶结款【送1个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/e8cc90c1b39cfd42c2ef6f0061514cfd.png~tplv-fceoirpogb-image.image"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "L**4"
                },
                {
                    "app_id": 1128,
                    "aweme_reply_count": 0,
                    "browse_count": "144",
                    "comment_time": "2024-03-09 22:19:28",
                    "consed": false,
                    "content": "可以",
                    "id": 827285549961216306,
                    "is_anonymous": false,
                    "liked": false,
                    "likes": 0,
                    "low_quality_type": 0,
                    "product_id": 3532801611376266422,
                    "rank": 15,
                    "rank_icon": {
                        "height": 42,
                        "uri": "tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png",
                        "url_list": [
                            "http://p6-ecom-commentpic.byteimg.com/tos-cn-i-fceoirpogb/dfe63a398ca467bc2a1c3fae19574aee.png~tplv-fceoirpogb-image.image"
                        ],
                        "width": 120
                    },
                    "rank_logistic": 5,
                    "rank_product": 5,
                    "rank_shop": 5,
                    "rank_type": 1,
                    "recommend": false,
                    "shop_reply": "",
                    "sku": "6提-蝴蝶结【送4个挂钩】",
                    "user_avatar": {
                        "url_list": [
                            "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_f001abe6a83a4d5b8382eb73c4d3f702.jpeg?from=4010531038"
                        ]
                    },
                    "user_id": 0,
                    "user_name": "小**r"
                }
            ],
            "_ddf": "leo"
        },
        secache: "c5b877eb3f111a634996233ef39dba29",
        secache_time: 1667288954,
        secache_date: "2022-11-01 15:49:14",
        translate_status: "",
        translate_time: 0,
        language: {
        default_lang: "cn",
        current_lang: "cn"
        },
        error: "",
        reason: "",
        error_code: "0000",
        cache: 1,
        api_info: "today:88 max:10100 all[259=88+54+117];expires:2030-12-31",
        execution_time: "0.513",
        server_time: "Beijing/2022-11-02 15:47:14",
        client_ip: "106.6.39.250",
        call_args: {
        num_iid: "7012906888161496331",
        page: 1
    },
    api_type: "douyin",
    translate_language: "zh-CN",
    translate_engine: "baidu",
    server_memory: "4.35MB",
    request_id: "3.636208254136",
    last_id: "1329057831"
    }
    异常示例
    相关资料
    错误码解释
    状态代码(error_code) 状态信息 详细描述 是否收费
    0000success接口调用成功并返回相关数据
    2000Search success but no result接口访问成功,但是搜索没有结果
    4000Server internal error服务器内部错误
    4001Network error网络错误
    4002Target server error目标服务器错误
    4003Param error用户输入参数错误忽略
    4004Account not found用户帐号不存在忽略
    4005Invalid authentication credentials授权失败忽略
    4006API stopped您的当前API已停用忽略
    4007Account stopped您的账户已停用忽略
    4008API rate limit exceeded并发已达上限忽略
    4009API maintenanceAPI维护中忽略
    4010API not found with these valuesAPI不存在忽略
    4012Please add api first请先添加api忽略
    4013Number of calls exceeded调用次数超限忽略
    4014Missing url param参数缺失忽略
    4015Wrong pageToken参数pageToken有误忽略
    4016Insufficient balance余额不足忽略
    4017timeout error请求超时
    5000unknown error未知错误
    API 工具
    如何获得此API
    立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)