返回顶部
热门问答 更多热门问答
技术文章 更多技术文章

淘宝买家秀软件开发实录思维模式文尾福利

[复制链接]
北极孤星的泪 显示全部楼层 发表于 2020-6-16 17:27:20 |阅读模式 打印 上一主题 下一主题

登录网站,浏览更多精彩内容

您需要 登录 才可以下载或查看,没有账号?加入我们

x
淘宝买家秀开发实录,网上看到一款软件一直可以用买家秀的下载,再加上商乾也想涉足这一块儿,于是变研究一下对方软件的原理。
1.jpg
通过HTTPDebuggerUI 中文版抓包发现
2.jpg
对方都指向同一个网站的网址:
网址1:
https://acs.m.taobao.com/h5/mtop.taobao.social.feed.aggregate/1.0/?appKey=12574478

网址2:
https://acs.m.taobao.com/h5/mtop.taobao.social.feed.aggregate/1.0/?appKey=12574478&t=1592294574735&sign=299b1f4ea33eded9259b3c110c6c27da&data=%7B%22params%22:%22%7B%5C%22nodeId%5C%22:%5C%22%5C%22,%5C%22sellerId%5C%22:%5C%22738722023%5C%22,%5C%22pagination%5C%22:%7B%5C%22direction%5C%22:%5C%221%5C%22,%5C%22hasMore%5C%22:%5C%22true%5C%22,%5C%22pageNum%5C%22:%5C%221%5C%22,%5C%22pageSize%5C%22:%5C%2220%5C%22%7D%7D%22,%22cursor%22:%221%22,%22pageNum%22:%221%22,%22pageId%22:5703,%22env%22:%221%22%7D

用易语言助手解析一下:
URL解码(GBK):        https://acs.m.taobao.com/h5/mtop ... b3c110c6c27da&data={"params":"{\"nodeId\":\"\",\"sellerId\":\"738722023\",\"pagination\":{\"direction\":\"1\",\"hasMore\":\"true\",\"pageNum\":\"1\",\"pageSize\":\"20\"}}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}

单纯用上面链接访问提示非法请求的错误。
1.jpg
思路:
对方软件优先访问的网址1的目的是什么?
发现:
  1. HTTP/1.1 200 OK
  2. Date: Tue, 16 Jun 2020 08:02:56 GMT
  3. Content-Type: application/json;charset=UTF-8
  4. Connection: keep-alive
  5. ufe-result: A6
  6. Set-Cookie: t=ebd8036588e0e1156982620c4a56c5c8;Path=/;Domain=.taobao.com;Max-Age=7776000
  7. Set-Cookie: cookie2=1593450f5c144a9d63fc2cd293056ba5;Path=/;Domain=.taobao.com;Max-Age=-1;HttpOnly
  8. Set-Cookie: v=0;Path=/;Domain=.taobao.com;Max-Age=-1
  9. Set-Cookie: _tb_token_=7e656e0be36ba;Path=/;Domain=.taobao.com;Max-Age=-1
  10. Set-Cookie: _m_h5_tk=68ac28f9019ed51932c0ea263ede3372_1592302496032;Path=/;Domain=taobao.com;Max-Age=604800
  11. Set-Cookie: _m_h5_tk_enc=181ec045ce216c7dff72579866224719;Path=/;Domain=taobao.com;Max-Age=604800
  12. S: STATUS_NOT_EXISTED
  13. x-node: 9aefc6acff92686ff0a141d762c510a9
  14. Cache-Control: no-cache
  15. x-eagleeye-id: 0b52070f15922945760328537ecc4d
  16. Pragma: no-cache
  17. X-Powered-By: m.taobao.com
  18. Server: Tengine/Aserver
  19. s-rt: 6
  20. x-aserver-sret: SUCCESS
  21. Timing-Allow-Origin: *
  22. EagleEye-TraceId: 0b52070f15922945760328537ecc4d
  23. Content-Length: 108
  24. {"api":"mtop.taobao.social.feed.aggregate","data":{},"ret":["FAIL_SYS_TOKEN_EMPTY::令牌为空"],"v":"1.0"}
复制代码
目前可以知道的:访问第一段网址为了获取:
cookies并且为了获取第二次带参数访问的token
现在的问题就出来了:参数可以通过解码,发现参数其实就是提供卖家的ID就可以了。参数t=是取现行时间戳(发现单纯取时间戳还是有点问题的后来发现# 获取当前时间戳t = str(int(time.time() * 1000)))。
# 获取当前时间戳
t = str(int(time.time() * 1000))

sign是个动态的也是最难的,需要你获取到sign签名的算法。
淘宝传下来的数据存在js文件中

1.png 链接二提交的参数:

  1. appKey: 12574478
  2. t: 1<span style="background-color: rgb(249, 249, 249);">592294574735</span>
  3. sign: <span style="background-color: rgb(249, 249, 249);">299b1f4ea33eded9259b3c110c6c27da</span>
  4. api: mtop.taobao.social.feed.aggregate
  5. v: 1.0
  6. timeout: 300000
  7. timer: 300000
  8. type: jsonp
  9. dataType: jsonp
  10. callback: mtopjsonp1
  11. data: {"params":"{"nodeId":"","sellerId":"<span style="background-color: rgb(249, 249, 249);">738722023</span>"}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}
复制代码
sign算法
全文搜索sign,在这个js代码中 1.png 找到了sign的生成方法
  1. sign = md5(token + '&' + t + '&' + appKey + '&' + data)
复制代码
关于上面拼接字符串的几个参数解释一下:
token : cookies中的_m_h5_值加上时间戳,如:
_m_h5_tk=2836432b51e57711db70ca4984ee0cc6_1560102469721
那么:token就为2836432b51e57711db70ca4984ee0cc6
t : 当前时间戳
appkey : 固定值可以在js代码中找到比如我的是 12574478
data :需要查询的参数传递的参数data的值:(这里需要注意一下)
比如浏览器中是这样:
  1. data:{"params":"{"nodeId":"","sellerId":"50852803"}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}
复制代码
那么python代码中就应该在每个斜杠前再加一个斜杠(转义),如下:

  1. data:{"params":"{\"nodeId\":\"\",\"sellerId\":\"50852803\"}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}
复制代码
md5码生成原理:
1.png

在上图中g(token + '&' + t + '&' + appKey + '&' + data),其实就是将拼接的字符串生成32位md5码,通过断点找出该源码:
md5  js:代码:

  1. unction g(a) {
  2.     function b(a, b) {
  3.         return a << b | a >>> 32 - b
  4.     }

  5.     function c(a, b) {
  6.         var c, d, e, f, g;
  7.         return e = 2147483648 & a, f = 2147483648 & b, c = 1073741824 & a, d = 1073741824 & b, g = (1073741823 & a) + (1073741823 & b), c & d ? 2147483648 ^ g ^ e ^ f : c | d ? 1073741824 & g ? 3221225472 ^ g ^ e ^ f : 1073741824 ^ g ^ e ^ f : g ^ e ^ f
  8.     }

  9.     function d(a, b, c) {
  10.         return a & b | ~a & c
  11.     }

  12.     function e(a, b, c) {
  13.         return a & c | b & ~c
  14.     }

  15.     function f(a, b, c) {
  16.         return a ^ b ^ c
  17.     }

  18.     function g(a, b, c) {
  19.         return b ^ (a | ~c)
  20.     }

  21.     function h(a, e, f, g, h, i, j) {
  22.         return a = c(a, c(c(d(e, f, g), h), j)), c(b(a, i), e)
  23.     }

  24.     function i(a, d, f, g, h, i, j) {
  25.         return a = c(a, c(c(e(d, f, g), h), j)), c(b(a, i), d)
  26.     }

  27.     function j(a, d, e, g, h, i, j) {
  28.         return a = c(a, c(c(f(d, e, g), h), j)), c(b(a, i), d)
  29.     }

  30.     function k(a, d, e, f, h, i, j) {
  31.         return a = c(a, c(c(g(d, e, f), h), j)), c(b(a, i), d)
  32.     }

  33.     function l(a) {
  34.         for (var b, c = a.length, d = c + 8, e = (d - d % 64) / 64, f = 16 * (e + 1), g = new Array(f - 1), h = 0, i = 0; c > i;) b = (i - i % 4) / 4, h = i % 4 * 8, g[b] = g[b] | a.charCodeAt(i) << h, i++;
  35.         return b = (i - i % 4) / 4, h = i % 4 * 8, g[b] = g[b] | 128 << h, g[f - 2] = c << 3, g[f - 1] = c >>> 29, g
  36.     }

  37.     function m(a) {
  38.         var b, c, d = "", e = "";
  39.         for (c = 0; 3 >= c; c++) b = a >>> 8 * c & 255, e = "0" + b.toString(16), d += e.substr(e.length - 2, 2);
  40.         return d
  41.     }

  42.     function n(a) {
  43.         a = a.replace(/\r\n/g, "\n");
  44.         for (var b = "", c = 0; c < a.length; c++) {
  45.             var d = a.charCodeAt(c);
  46.             128 > d ? b += String.fromCharCode(d) : d > 127 && 2048 > d ? (b += String.fromCharCode(d >> 6 | 192), b += String.fromCharCode(63 & d | 128)) : (b += String.fromCharCode(d >> 12 | 224), b += String.fromCharCode(d >> 6 & 63 | 128), b += String.fromCharCode(63 & d | 128))
  47.         }
  48.         return b
  49.     }

  50.     var o, p, q, r, s, t, u, v, w, x = [], y = 7, z = 12, A = 17, B = 22, C = 5, D = 9, E = 14, F = 20, G = 4,
  51.         H = 11, I = 16, J = 23, K = 6, L = 10, M = 15, N = 21;
  52.     for (a = n(a), x = l(a), t = 1732584193, u = 4023233417, v = 2562383102, w = 271733878, o = 0; o < x.length; o += 16) p = t, q = u, r = v, s = w, t = h(t, u, v, w, x[o + 0], y, 3614090360), w = h(w, t, u, v, x[o + 1], z, 3905402710), v = h(v, w, t, u, x[o + 2], A, 606105819), u = h(u, v, w, t, x[o + 3], B, 3250441966), t = h(t, u, v, w, x[o + 4], y, 4118548399), w = h(w, t, u, v, x[o + 5], z, 1200080426), v = h(v, w, t, u, x[o + 6], A, 2821735955), u = h(u, v, w, t, x[o + 7], B, 4249261313), t = h(t, u, v, w, x[o + 8], y, 1770035416), w = h(w, t, u, v, x[o + 9], z, 2336552879), v = h(v, w, t, u, x[o + 10], A, 4294925233), u = h(u, v, w, t, x[o + 11], B, 2304563134), t = h(t, u, v, w, x[o + 12], y, 1804603682), w = h(w, t, u, v, x[o + 13], z, 4254626195), v = h(v, w, t, u, x[o + 14], A, 2792965006), u = h(u, v, w, t, x[o + 15], B, 1236535329), t = i(t, u, v, w, x[o + 1], C, 4129170786), w = i(w, t, u, v, x[o + 6], D, 3225465664), v = i(v, w, t, u, x[o + 11], E, 643717713), u = i(u, v, w, t, x[o + 0], F, 3921069994), t = i(t, u, v, w, x[o + 5], C, 3593408605), w = i(w, t, u, v, x[o + 10], D, 38016083), v = i(v, w, t, u, x[o + 15], E, 3634488961), u = i(u, v, w, t, x[o + 4], F, 3889429448), t = i(t, u, v, w, x[o + 9], C, 568446438), w = i(w, t, u, v, x[o + 14], D, 3275163606), v = i(v, w, t, u, x[o + 3], E, 4107603335), u = i(u, v, w, t, x[o + 8], F, 1163531501), t = i(t, u, v, w, x[o + 13], C, 2850285829), w = i(w, t, u, v, x[o + 2], D, 4243563512), v = i(v, w, t, u, x[o + 7], E, 1735328473), u = i(u, v, w, t, x[o + 12], F, 2368359562), t = j(t, u, v, w, x[o + 5], G, 4294588738), w = j(w, t, u, v, x[o + 8], H, 2272392833), v = j(v, w, t, u, x[o + 11], I, 1839030562), u = j(u, v, w, t, x[o + 14], J, 4259657740), t = j(t, u, v, w, x[o + 1], G, 2763975236), w = j(w, t, u, v, x[o + 4], H, 1272893353), v = j(v, w, t, u, x[o + 7], I, 4139469664), u = j(u, v, w, t, x[o + 10], J, 3200236656), t = j(t, u, v, w, x[o + 13], G, 681279174), w = j(w, t, u, v, x[o + 0], H, 3936430074), v = j(v, w, t, u, x[o + 3], I, 3572445317), u = j(u, v, w, t, x[o + 6], J, 76029189), t = j(t, u, v, w, x[o + 9], G, 3654602809), w = j(w, t, u, v, x[o + 12], H, 3873151461), v = j(v, w, t, u, x[o + 15], I, 530742520), u = j(u, v, w, t, x[o + 2], J, 3299628645), t = k(t, u, v, w, x[o + 0], K, 4096336452), w = k(w, t, u, v, x[o + 7], L, 1126891415), v = k(v, w, t, u, x[o + 14], M, 2878612391), u = k(u, v, w, t, x[o + 5], N, 4237533241), t = k(t, u, v, w, x[o + 12], K, 1700485571), w = k(w, t, u, v, x[o + 3], L, 2399980690), v = k(v, w, t, u, x[o + 10], M, 4293915773), u = k(u, v, w, t, x[o + 1], N, 2240044497), t = k(t, u, v, w, x[o + 8], K, 1873313359), w = k(w, t, u, v, x[o + 15], L, 4264355552), v = k(v, w, t, u, x[o + 6], M, 2734768916), u = k(u, v, w, t, x[o + 13], N, 1309151649), t = k(t, u, v, w, x[o + 4], K, 4149444226), w = k(w, t, u, v, x[o + 11], L, 3174756917), v = k(v, w, t, u, x[o + 2], M, 718787259), u = k(u, v, w, t, x[o + 9], N, 3951481745), t = c(t, p), u = c(u, q), v = c(v, r), w = c(w, s);
  53.     var O = m(t) + m(u) + m(v) + m(w);
  54.     return O.toLowerCase()
  55. }
复制代码

易语言生成MD5就方便了直接:

  1. 取数据摘要(到字集(sign))
复制代码

python生成MD5码:

  1. def hex_md5(s):
  2.     m = hashlib.md5()
  3.     m.update(s.encode('UTF-8'))
  4.     return m.hexdigest()
复制代码
python代码:
  1. params = {
  2.         'appKey': appKey,
  3.         'data': data
  4. }
  5. # 请求空获取cookies
  6. html = requests.get(url, params=params)
  7. m_h5_tk = html.cookies['_m_h5_tk']
  8. m_h5_tk_enc = html.cookies['_m_h5_tk_enc']

复制代码

其中params是必不可少的,然后可以根据 token = _m_h5_tk.split('_')[0]  得到token;

然后再根据已知的数据构造请求,就可得到数据;

  1. import hashlib
  2. import json
  3. import time
  4. import requests
  5. import pymysql as mdb

  6. def hex_md5(s):
  7.     m = hashlib.md5()
  8.     m.update(s.encode('UTF-8'))
  9.     return m.hexdigest()

  10. def get_page(index, num):
  11.     url = 'https://acs.m.taobao.com/h5/mtop.taobao.social.feed.aggregate/1.0/'
  12.     appKey = '12574478'
  13.     # 获取当前时间戳
  14.     t = str(int(time.time() * 1000))
  15.     data = '{"params":"{\"nodeId\":\"\",\"sellerId\":\"50852803\",\"pagination\":{\"direction\":\"1\",\"hasMore\":\"true\",\"pageNum\":\"' + str(
  16.         index) + '\",\"pageSize\":\"' + str(num) + '\"}}","cursor":"' + str(
  17.         index) + '","pageNum":"' + str(
  18.         index) + '","pageId":5703,"env":"1"}'
  19.     params = {
  20.         'appKey': appKey,
  21.         'data': data
  22.     }
  23.     # 请求空获取cookies
  24.     html = requests.get(url, params=params)
  25.     _m_h5_tk = html.cookies['_m_h5_tk']
  26.     _m_h5_tk_enc = html.cookies['_m_h5_tk_enc']
  27.     token = _m_h5_tk.split('_')[0]
  28.     cookie_t = html.cookies['t']
  29.     u = token + '&' + t + '&' + appKey + '&' + data
  30.     # MD5加密
  31.     sign = hex_md5(u)
  32.     print('秘钥:' + sign)
  33.     # 设置第二次请求的cookie
  34.     headers = {
  35.         'cookie': '_m_h5_tk=' + _m_h5_tk + '; _m_h5_tk_enc=' + _m_h5_tk_enc,
  36.     }
  37.     params = {
  38.         'appKey': appKey,
  39.         't': t,
  40.         'sign': sign,
  41.         'data': data
  42.     }
  43.     html = requests.get(url, headers=headers, params=params)
  44.     item = json.loads(html.text)
  45.     # 第一页有21条,第一条无用
  46.     for i in item['data']['list'][-num:]:
  47.         print(i)
  48. get_page(2, 20)
复制代码

易语言json解析后下载就可以了:

  1. {
  2.    "api" : "mtop.taobao.social.feed.aggregate",
  3.    "data" : {
  4.       "card2" : null,
  5.       "config" : {
  6.          "accountId" : "738722023",
  7.          "layout" : "http://h5.m.taobao.com/app/topic/shopTopic.js",
  8.          "pageName" : "Backyard",
  9.          "spm" : "a2116i.9075633",
  10.          "title" : "买家秀"
  11.       },
  12.       "header" : {
  13.          "cover" : "https://img.alicdn.com/imgextra/i3/738722023/O1CN011QoZhfACnox0kno_!!738722023.jpg",
  14.          "id" : "91163952657",
  15.          "targetUrl" : "https://shop.m.taobao.com/shop/shop_index.htm?user_id=738722023",
  16.          "title" : "南极人官方旗舰店的买家秀"
  17.       },
  18.       "list" : [
  19.          {
  20.             "cardType" : "16",
  21.             "separate" : {
  22.                "height" : "30"
  23.             }
  24.          },
  25.          {
  26.             "cardType" : "5",
  27.             "desc" : "开心-省钱-南极人",
  28.             "separate" : {
  29.                "height" : "30"
  30.             },
  31.             "title" : "公告"
  32.          },
  33.          {
  34.             "accountId" : "738722023",
  35.             "cardType" : "9",
  36.             "commentCount" : "1",
  37.             "favourCount" : "15",
  38.             "favourStatus" : "false",
  39.             "feedType" : "103",
  40.             "gmtCreate" : "1553235226000",
  41.             "id" : "221794234275",
  42.             "isElite" : "true",
  43.             "isTop" : "false",
  44.             "namespace" : "1002",
  45.             "nodeId" : "91163952657",
  46.             "pics" : [
  47.                {
  48.                   "height" : "800",
  49.                   "id" : "1739406510655966535",
  50.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN01OrfQWw24UV12xeE8l_!!0-rate.jpg",
  51.                   "type" : "pic",
  52.                   "width" : "800"
  53.                },
  54.                {
  55.                   "height" : "800",
  56.                   "id" : "1739406506396449199",
  57.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN012elWVL24UV0yJNj6F_!!0-rate.jpg",
  58.                   "type" : "pic",
  59.                   "width" : "800"
  60.                },
  61.                {
  62.                   "height" : "800",
  63.                   "id" : "1739406508701368476",
  64.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01rlTcpf24UV10pMvtc_!!0-rate.jpg",
  65.                   "type" : "pic",
  66.                   "width" : "800"
  67.                },
  68.                {
  69.                   "height" : "800",
  70.                   "id" : "1739406508687700352",
  71.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01ZgaGpf24UV10oRaC0_!!0-rate.jpg",
  72.                   "type" : "pic",
  73.                   "width" : "800"
  74.                }
  75.             ],
  76.             "privileges" : [],
  77.             "referId" : "221174551715",
  78.             "sellershowId" : null,
  79.             "separate" : {
  80.                "height" : "14"
  81.             },
  82.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=221174551715",
  83.             "title" : "文胸收到了,抹上去非常柔软,穿身上非常贴身很舒服也不嘞,内衣穿上很舒服就和没穿一样舒服真的超级好看,以后都不用担心,豪无累赘之感,质感亲肤,清洗不掉色,超舒服像没穿 很贴肤毫无怪异难闻之味,真想不到这么便宜的价格买到如此好的产品!内衣的材质特别柔软亲肤透气而且弹性很好值得购买。穿着挺舒服的,已经是第二次买了,版型比较适合我,料子也还舒服,罩杯合适,肩带不会滑,很贴身!下次还会回购的!",
  84.             "user" : {
  85.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=PC*-XFHWvCMeOmQ4MC--Xm*HO88bXH*hXFlhMFxuOFxT",
  86.                "userNick" : "@浩哥~",
  87.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=PC*-XFHWvCMeOmQ4MC--Xm*HO88bXH*hXFlhMFxuOFxT"
  88.             },
  89.             "videos" : []
  90.          },
  91.          {
  92.             "accountId" : "738722023",
  93.             "cardType" : "9",
  94.             "commentCount" : "1",
  95.             "favourCount" : "14",
  96.             "favourStatus" : "false",
  97.             "feedType" : "103",
  98.             "gmtCreate" : "1553235271000",
  99.             "id" : "221728253925",
  100.             "isElite" : "true",
  101.             "isTop" : "false",
  102.             "namespace" : "1002",
  103.             "nodeId" : "91163952657",
  104.             "pics" : [
  105.                {
  106.                   "height" : "300",
  107.                   "id" : "1751506513233951064",
  108.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01qBnrlt25NuwNTQW52_!!0-rate.jpg",
  109.                   "type" : "pic",
  110.                   "width" : "400"
  111.                },
  112.                {
  113.                   "height" : "400",
  114.                   "id" : "1751506504599952056",
  115.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN01LrEUHg25NuwE378WW_!!0-rate.jpg",
  116.                   "type" : "pic",
  117.                   "width" : "300"
  118.                }
  119.             ],
  120.             "privileges" : [],
  121.             "referId" : "221259638999",
  122.             "sellershowId" : null,
  123.             "separate" : {
  124.                "height" : "14"
  125.             },
  126.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=221259638999",
  127.             "title" : "款式时尚,穿着很性感,每一件都很完美!质量尺寸都非常满意,宝贝不错!款式好!质量好!非常喜欢!找这款很久了,颜色也非常好!很喜欢,客服态度很好,给我细心解答了,发货的及时,整个物流很快,",
  128.             "user" : {
  129.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MG9IMFcbMHQGv8kSMFNyvG9hOFxbXm-IPG-zMCR-MFxT",
  130.                "userNick" : "t***2",
  131.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MG9IMFcbMHQGv8kSMFNyvG9hOFxbXm-IPG-zMCR-MFxT"
  132.             },
  133.             "videos" : []
  134.          },
  135.          {
  136.             "accountId" : "738722023",
  137.             "cardType" : "9",
  138.             "commentCount" : "1",
  139.             "favourCount" : "3",
  140.             "favourStatus" : "false",
  141.             "feedType" : "103",
  142.             "gmtCreate" : "1543241360000",
  143.             "id" : "214544607082",
  144.             "isElite" : "true",
  145.             "isTop" : "false",
  146.             "namespace" : "1002",
  147.             "nodeId" : "91163952657",
  148.             "pics" : [
  149.                {
  150.                   "height" : "1635",
  151.                   "id" : "1438306419403575565",
  152.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01sowv7g1iFSR5ZBJ7N_!!0-rate.jpg",
  153.                   "type" : "pic",
  154.                   "width" : "1242"
  155.                },
  156.                {
  157.                   "height" : "1656",
  158.                   "id" : "1438306419604308127",
  159.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011qxDPy1iFSR5mlYpL_!!0-rate.jpg",
  160.                   "type" : "pic",
  161.                   "width" : "1242"
  162.                },
  163.                {
  164.                   "height" : "1656",
  165.                   "id" : "1438306420033865610",
  166.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01q6HZwN1iFSR6FpwLq_!!0-rate.jpg",
  167.                   "type" : "pic",
  168.                   "width" : "1242"
  169.                }
  170.             ],
  171.             "privileges" : [],
  172.             "referId" : "214394264332",
  173.             "sellershowId" : null,
  174.             "separate" : {
  175.                "height" : "14"
  176.             },
  177.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=214394264332",
  178.             "title" : "不错",
  179.             "user" : {
  180.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vC8yO8kYM0k0PkZhO8cGPmlIPmNbMk7IPGN4M0gbMGkT",
  181.                "userNick" : "SuenLoo",
  182.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vC8yO8kYM0k0PkZhO8cGPmlIPmNbMk7IPGN4M0gbMGkT"
  183.             },
  184.             "videos" : []
  185.          },
  186.          {
  187.             "accountId" : "738722023",
  188.             "cardType" : "9",
  189.             "commentCount" : "3",
  190.             "favourCount" : "6",
  191.             "favourStatus" : "false",
  192.             "feedType" : "103",
  193.             "gmtCreate" : "1543241299000",
  194.             "id" : "214507846214",
  195.             "isElite" : "true",
  196.             "isTop" : "false",
  197.             "namespace" : "1002",
  198.             "nodeId" : "91163952657",
  199.             "pics" : [
  200.                {
  201.                   "height" : "400",
  202.                   "id" : "1438506419206518475",
  203.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN016SVJXO1iGNECIyTu7_!!2-rate.png",
  204.                   "type" : "pic",
  205.                   "width" : "300"
  206.                },
  207.                {
  208.                   "height" : "300",
  209.                   "id" : "1438506419206214725",
  210.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN01BhLZrY1iGNECIxCsv_!!2-rate.png",
  211.                   "type" : "pic",
  212.                   "width" : "400"
  213.                },
  214.                {
  215.                   "height" : "400",
  216.                   "id" : "1438506420042153044",
  217.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01HmCtYP1iGNEDDWid2_!!0-rate.jpg",
  218.                   "type" : "pic",
  219.                   "width" : "300"
  220.                }
  221.             ],
  222.             "privileges" : [],
  223.             "referId" : "214475866664",
  224.             "sellershowId" : null,
  225.             "separate" : {
  226.                "height" : "14"
  227.             },
  228.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=214475866664",
  229.             "title" : "是纯棉的哦,质量真心不错呢,买了就不会亏系列,哈哈,买东西还是得来旗舰店啊 ,品质有保证,不错,杠杠的,现在已经穿上了,纯棉的衣服穿着就是舒服,而且不易变形,手感摸着也很柔软,南极人的品质一直都是不错的,物流也很快,值得信赖,美滋滋!!!!!",
  230.             "user" : {
  231.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MFgSXH84MkQuvF-IXm9hM8cWPF-zPFcYMkRIPmvWPk8T",
  232.                "userNick" : "小小小儿群",
  233.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MFgSXH84MkQuvF-IXm9hM8cWPF-zPFcYMkRIPmvWPk8T"
  234.             },
  235.             "videos" : []
  236.          },
  237.          {
  238.             "accountId" : "738722023",
  239.             "cardType" : "9",
  240.             "commentCount" : "1",
  241.             "favourCount" : "3",
  242.             "favourStatus" : "false",
  243.             "feedType" : "103",
  244.             "gmtCreate" : "1543241315000",
  245.             "id" : "214544539022",
  246.             "isElite" : "true",
  247.             "isTop" : "false",
  248.             "namespace" : "1002",
  249.             "nodeId" : "91163952657",
  250.             "pics" : [
  251.                {
  252.                   "height" : "300",
  253.                   "id" : "1408106419392871112",
  254.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01uoniEN1g18p9XxZUW_!!2-rate.png",
  255.                   "type" : "pic",
  256.                   "width" : "400"
  257.                },
  258.                {
  259.                   "height" : "400",
  260.                   "id" : "1408106419592644949",
  261.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN0139BBSn1g18p9lTnnB_!!2-rate.png",
  262.                   "type" : "pic",
  263.                   "width" : "224"
  264.                }
  265.             ],
  266.             "privileges" : [],
  267.             "referId" : "214474730487",
  268.             "sellershowId" : null,
  269.             "separate" : {
  270.                "height" : "14"
  271.             },
  272.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=214474730487",
  273.             "title" : "东西还是很不错的,值得肯定,而且卖家的服务态度很好,回复速度也是嗖嗖的,实物跟描述的一样,确实是百分百纯棉的,这点还是很满意的,纯棉材质的衣服,穿着也放心,而且纯棉的材质穿着也更亲肤,更舒适,手感也很柔软,而且现在这个天气,穿这个款式还是正好的,不易起球,用来打底也是一个不错的选择,保暖又不显臃肿,哈哈,还是很划算的!!!!!",
  274.             "user" : {
  275.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=PmRIOFIGvmHWvGI0MF-IOFHYP8cSXH8bPC--OF9hv0cT",
  276.                "userNick" : "心***1",
  277.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=PmRIOFIGvmHWvGI0MF-IOFHYP8cSXH8bPC--OF9hv0cT"
  278.             },
  279.             "videos" : []
  280.          },
  281.          {
  282.             "accountId" : "738722023",
  283.             "cardType" : "9",
  284.             "commentCount" : "2",
  285.             "favourCount" : "5",
  286.             "favourStatus" : "false",
  287.             "feedType" : "103",
  288.             "gmtCreate" : "1539248565000",
  289.             "id" : "210706670274",
  290.             "isElite" : "true",
  291.             "isTop" : "false",
  292.             "namespace" : "1002",
  293.             "nodeId" : "91163952657",
  294.             "pics" : [
  295.                {
  296.                   "height" : "992",
  297.                   "id" : "1445306365603862088",
  298.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011ilW94DlNmqb3eC_!!0-rate.jpg",
  299.                   "type" : "pic",
  300.                   "width" : "744"
  301.                },
  302.                {
  303.                   "height" : "992",
  304.                   "id" : "1445306366371002233",
  305.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011ilW953gDyzsTqh_!!0-rate.jpg",
  306.                   "type" : "pic",
  307.                   "width" : "744"
  308.                },
  309.                {
  310.                   "height" : "992",
  311.                   "id" : "1445306367146414902",
  312.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011ilW95u9mEwz9kC_!!0-rate.jpg",
  313.                   "type" : "pic",
  314.                   "width" : "744"
  315.                }
  316.             ],
  317.             "privileges" : [],
  318.             "referId" : "210452845463",
  319.             "sellershowId" : null,
  320.             "separate" : {
  321.                "height" : "14"
  322.             },
  323.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210452845463",
  324.             "title" : "宝贝收到了,和描述的一样,是正品,大小合适,很满意。",
  325.             "user" : {
  326.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MmPeO8kLvm8YXm*zMm*eOFcSXml-PmvyPCQYvHkLM0kT",
  327.                "userNick" : "y***8",
  328.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MmPeO8kLvm8YXm*zMm*eOFcSXml-PmvyPCQYvHkLM0kT"
  329.             },
  330.             "videos" : []
  331.          },
  332.          {
  333.             "accountId" : "738722023",
  334.             "cardType" : "9",
  335.             "commentCount" : "6",
  336.             "favourCount" : "12",
  337.             "favourStatus" : "false",
  338.             "feedType" : "103",
  339.             "gmtCreate" : "1539248625000",
  340.             "id" : "210662392234",
  341.             "isElite" : "true",
  342.             "isTop" : "false",
  343.             "namespace" : "1002",
  344.             "nodeId" : "91163952657",
  345.             "pics" : [
  346.                {
  347.                   "height" : "960",
  348.                   "id" : "1589606367100547733",
  349.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011tQPfVwiFLZ0tkz_!!0-rate.jpg",
  350.                   "type" : "pic",
  351.                   "width" : "720"
  352.                }
  353.             ],
  354.             "privileges" : [],
  355.             "referId" : "210684363727",
  356.             "sellershowId" : null,
  357.             "separate" : {
  358.                "height" : "14"
  359.             },
  360.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210684363727",
  361.             "title" : "不错",
  362.             "user" : {
  363.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MCHSvG8yvHgSPmxLPkQ0MGkSvHlzv8g0Xm--PmMzMmHT",
  364.                "userNick" : "嘟嘟狗在狂奔",
  365.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MCHSvG8yvHgSPmxLPkQ0MGkSvHlzv8g0Xm--PmMzMmHT"
  366.             },
  367.             "videos" : []
  368.          },
  369.          {
  370.             "accountId" : "738722023",
  371.             "cardType" : "9",
  372.             "commentCount" : "3",
  373.             "favourCount" : "9",
  374.             "favourStatus" : "false",
  375.             "feedType" : "103",
  376.             "gmtCreate" : "1539248627000",
  377.             "id" : "210685617381",
  378.             "isElite" : "true",
  379.             "isTop" : "false",
  380.             "namespace" : "1002",
  381.             "nodeId" : "91163952657",
  382.             "pics" : [
  383.                {
  384.                   "height" : "1065",
  385.                   "id" : "1038406366946019931",
  386.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011EhuYPOOsQNHHDa_!!0-rate.jpg",
  387.                   "type" : "pic",
  388.                   "width" : "800"
  389.                }
  390.             ],
  391.             "privileges" : [],
  392.             "referId" : "210604481375",
  393.             "sellershowId" : null,
  394.             "separate" : {
  395.                "height" : "14"
  396.             },
  397.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210604481375",
  398.             "title" : "这是一个好评模板,不要看了下面都是废话。因为本仙女很懒不想每个宝贝都写好评所以才模仿网友的好评模板,但是这个宝贝不管是质量还是款式都是本仙女喜欢的如果不喜欢本仙女收到会很生气然后这个模板就会变成各种喋喋不体的吐槽,自然不会撒下这个好评给各位淘友一个参考。本宝贝还是极好的,来自一位懒省事的只爱购物不爱写评论只想换积分的仙女",
  399.             "user" : {
  400.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vFgLvFc4PmHLXHx4v8ZzOHgWOmIYMG-HOmQbPFc4XmgT",
  401.                "userNick" : "一个小草莓10",
  402.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vFgLvFc4PmHLXHx4v8ZzOHgWOmIYMG-HOmQbPFc4XmgT"
  403.             },
  404.             "videos" : []
  405.          },
  406.          {
  407.             "accountId" : "738722023",
  408.             "cardType" : "9",
  409.             "commentCount" : "0",
  410.             "favourCount" : "12",
  411.             "favourStatus" : "false",
  412.             "feedType" : "103",
  413.             "gmtCreate" : "1539248768000",
  414.             "id" : "210741047459",
  415.             "isElite" : "true",
  416.             "isTop" : "false",
  417.             "namespace" : "1002",
  418.             "nodeId" : "91163952657",
  419.             "pics" : [
  420.                {
  421.                   "height" : "1920",
  422.                   "id" : "1268706339506993067",
  423.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2QqdFXsbpK1RjSZFyXXX_qFXa_!!2-rate.png",
  424.                   "type" : "pic",
  425.                   "width" : "1080"
  426.                },
  427.                {
  428.                   "height" : "1040",
  429.                   "id" : "1268706339809202007",
  430.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2gL8DXwHqK1RjSZFkXXX.WFXa_!!0-rate.jpg",
  431.                   "type" : "pic",
  432.                   "width" : "780"
  433.                },
  434.                {
  435.                   "height" : "1040",
  436.                   "id" : "1268706340880182266",
  437.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/TB2a9JDXzTpK1RjSZKPXXa3UpXa_!!0-rate.jpg",
  438.                   "type" : "pic",
  439.                   "width" : "780"
  440.                },
  441.                {
  442.                   "height" : "780",
  443.                   "id" : "1268706341284315889",
  444.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2_rtEXzDpK1RjSZFrXXa78VXa_!!0-rate.jpg",
  445.                   "type" : "pic",
  446.                   "width" : "1040"
  447.                }
  448.             ],
  449.             "privileges" : [],
  450.             "referId" : "208866950630",
  451.             "sellershowId" : null,
  452.             "separate" : {
  453.                "height" : "14"
  454.             },
  455.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=208866950630",
  456.             "title" : "挺好的,是正品,质量也挺好,绵绵的,160,87,买M.号正好",
  457.             "user" : {
  458.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=M8ZhPmP-PFNLMkcWMkcGOFgSMChHMHR-M8ZhvGcYvFIT",
  459.                "userNick" : "1005#KKW",
  460.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=M8ZhPmP-PFNLMkcWMkcGOFgSMChHMHR-M8ZhvGcYvFIT"
  461.             },
  462.             "videos" : []
  463.          },
  464.          {
  465.             "accountId" : "738722023",
  466.             "cardType" : "9",
  467.             "commentCount" : "0",
  468.             "favourCount" : "6",
  469.             "favourStatus" : "false",
  470.             "feedType" : "103",
  471.             "gmtCreate" : "1539248744000",
  472.             "id" : "210685641929",
  473.             "isElite" : "true",
  474.             "isTop" : "false",
  475.             "namespace" : "1002",
  476.             "nodeId" : "91163952657",
  477.             "pics" : [
  478.                {
  479.                   "height" : "960",
  480.                   "id" : "1987206362244668010",
  481.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN012MnQQOamHSU5bQD_!!0-rate.jpg",
  482.                   "type" : "pic",
  483.                   "width" : "480"
  484.                }
  485.             ],
  486.             "privileges" : [],
  487.             "referId" : "210163560109",
  488.             "sellershowId" : null,
  489.             "separate" : {
  490.                "height" : "14"
  491.             },
  492.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210163560109",
  493.             "title" : "物流快,穿上好舒服,值得购买。",
  494.             "user" : {
  495.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MCQ0v8cSXmIyOHPePFNYOFI0XmZzO8*eOHg0X87hXH8T",
  496.                "userNick" : "独家记忆姐",
  497.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MCQ0v8cSXmIyOHPePFNYOFI0XmZzO8*eOHg0X87hXH8T"
  498.             },
  499.             "videos" : []
  500.          },
  501.          {
  502.             "accountId" : "738722023",
  503.             "cardType" : "9",
  504.             "commentCount" : "1",
  505.             "favourCount" : "6",
  506.             "favourStatus" : "false",
  507.             "feedType" : "103",
  508.             "gmtCreate" : "1539248799000",
  509.             "id" : "210685677888",
  510.             "isElite" : "true",
  511.             "isTop" : "false",
  512.             "namespace" : "1002",
  513.             "nodeId" : "91163952657",
  514.             "pics" : [
  515.                {
  516.                   "height" : "800",
  517.                   "id" : "1269506368672351767",
  518.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011VmLrXGvflvoSg4_!!0-rate.jpg",
  519.                   "type" : "pic",
  520.                   "width" : "1421"
  521.                }
  522.             ],
  523.             "privileges" : [],
  524.             "referId" : "210550965928",
  525.             "sellershowId" : null,
  526.             "separate" : {
  527.                "height" : "14"
  528.             },
  529.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210550965928",
  530.             "title" : "睡衣还不错,挺保暖的,穿的很舒服",
  531.             "user" : {
  532.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=M87-v07eM8lIvmRzO8*-vHZIv88LPGhevGMevGMIO88T",
  533.                "userNick" : "萧雁鸣",
  534.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=M87-v07eM8lIvmRzO8*-vHZIv88LPGhevGMevGMIO88T"
  535.             },
  536.             "videos" : []
  537.          },
  538.          {
  539.             "accountId" : "738722023",
  540.             "cardType" : "9",
  541.             "commentCount" : "0",
  542.             "favourCount" : "7",
  543.             "favourStatus" : "false",
  544.             "feedType" : "103",
  545.             "gmtCreate" : "1539248807000",
  546.             "id" : "210741111222",
  547.             "isElite" : "true",
  548.             "isTop" : "false",
  549.             "namespace" : "1002",
  550.             "nodeId" : "91163952657",
  551.             "pics" : [
  552.                {
  553.                   "height" : "1600",
  554.                   "id" : "1521306354876997352",
  555.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/TB2LSZIdCrqK1RjSZK9XXXyypXa_!!0-rate.jpg",
  556.                   "type" : "pic",
  557.                   "width" : "800"
  558.                }
  559.             ],
  560.             "privileges" : [],
  561.             "referId" : "209794200331",
  562.             "sellershowId" : null,
  563.             "separate" : {
  564.                "height" : "14"
  565.             },
  566.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=209794200331",
  567.             "title" : "衣服质量挺好的,我已经洗过了,蓝盆友和我一人一套。他穿了挺满意",
  568.             "user" : {
  569.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=OFNGXmPzv8Z-P8*zPFIbvGQYPF-evmI4PH84MmlzXmgT",
  570.                "userNick" : "小土豆的candyrain",
  571.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=OFNGXmPzv8Z-P8*zPFIbvGQYPF-evmI4PH84MmlzXmgT"
  572.             },
  573.             "videos" : []
  574.          },
  575.          {
  576.             "accountId" : "738722023",
  577.             "cardType" : "9",
  578.             "commentCount" : "1",
  579.             "favourCount" : "6",
  580.             "favourStatus" : "false",
  581.             "feedType" : "103",
  582.             "gmtCreate" : "1539248800000",
  583.             "id" : "210662480422",
  584.             "isElite" : "true",
  585.             "isTop" : "false",
  586.             "namespace" : "1002",
  587.             "nodeId" : "91163952657",
  588.             "pics" : [
  589.                {
  590.                   "height" : "816",
  591.                   "id" : "1312706367240792967",
  592.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011YyCxjhwAkxOQh3_!!0-rate.jpg",
  593.                   "type" : "pic",
  594.                   "width" : "612"
  595.                },
  596.                {
  597.                   "height" : "690",
  598.                   "id" : "1312706367408891693",
  599.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011YyCxjtJUuj3B2t_!!0-rate.jpg",
  600.                   "type" : "pic",
  601.                   "width" : "690"
  602.                },
  603.                {
  604.                   "height" : "198",
  605.                   "id" : "1312706368311997957",
  606.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011YyCxksQq6n7wxY_!!0-rate.jpg",
  607.                   "type" : "pic",
  608.                   "width" : "195"
  609.                }
  610.             ],
  611.             "privileges" : [],
  612.             "referId" : "210550105820",
  613.             "sellershowId" : null,
  614.             "separate" : {
  615.                "height" : "14"
  616.             },
  617.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210550105820",
  618.             "title" : "好评,柔软没异味。比想象的好,够厚,够暖!!!!户\n听说好评必须85字?不然没有积分?那么问题来了,怎么样才可以达到85字呢?这个问题在我的脑海里久久不去。马云爸爸怎么可以这样欺负我?不给我买冰阔洛也就算了,还让我一个二年级的小学生评论一定要写85字,哼!好过分啊,一定要记在小本本上",
  619.             "user" : {
  620.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=P0cGPCv4vmkuvF8bPHx0XF9HOFlHMF8YvG8bOmReMCIT",
  621.                "userNick" : "哈哈哈哈147。",
  622.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=P0cGPCv4vmkuvF8bPHx0XF9HOFlHMF8YvG8bOmReMCIT"
  623.             },
  624.             "videos" : []
  625.          },
  626.          {
  627.             "accountId" : "738722023",
  628.             "cardType" : "9",
  629.             "commentCount" : "0",
  630.             "favourCount" : "6",
  631.             "favourStatus" : "false",
  632.             "feedType" : "103",
  633.             "gmtCreate" : "1539248845000",
  634.             "id" : "210662568333",
  635.             "isElite" : "true",
  636.             "isTop" : "false",
  637.             "namespace" : "1002",
  638.             "nodeId" : "91163952657",
  639.             "pics" : [
  640.                {
  641.                   "height" : "1066",
  642.                   "id" : "1173906351457745664",
  643.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2sK5Uc9zqK1RjSZPcXXbTepXa_!!0-rate.jpg",
  644.                   "type" : "pic",
  645.                   "width" : "800"
  646.                },
  647.                {
  648.                   "height" : "1066",
  649.                   "id" : "1173906353385460371",
  650.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2M.jec4jaK1RjSZKzXXXVwXXa_!!0-rate.jpg",
  651.                   "type" : "pic",
  652.                   "width" : "800"
  653.                }
  654.             ],
  655.             "privileges" : [],
  656.             "referId" : "209647865175",
  657.             "sellershowId" : null,
  658.             "separate" : {
  659.                "height" : "14"
  660.             },
  661.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=209647865175",
  662.             "title" : "给老公和我一人买了一件,老公还没试,不知道合不合身,我试了下正好,怎么说呢。。质量还可以吧,挺薄的冬天家里有暖气穿着应该正好,就是颜色和自己想的有点出处吧,感觉有点发污,整体感觉只能说一般,物流和包装都很好!",
  663.             "user" : {
  664.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=XmQSM8*hMmQuMkRhMmQGvmReMHkGOF9HvCc0PHkbvGxT",
  665.                "userNick" : "飞妍辶币",
  666.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=XmQSM8*hMmQuMkRhMmQGvmReMHkGOF9HvCc0PHkbvGxT"
  667.             },
  668.             "videos" : []
  669.          },
  670.          {
  671.             "accountId" : "738722023",
  672.             "cardType" : "9",
  673.             "commentCount" : "0",
  674.             "favourCount" : "3",
  675.             "favourStatus" : "false",
  676.             "feedType" : "103",
  677.             "gmtCreate" : "1538981337000",
  678.             "id" : "210444369482",
  679.             "isElite" : "true",
  680.             "isTop" : "false",
  681.             "namespace" : "1002",
  682.             "nodeId" : "91163952657",
  683.             "pics" : [
  684.                {
  685.                   "height" : "1066",
  686.                   "id" : "1395006364118959677",
  687.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011f38vKkIW2nwA4p_!!2-rate.png",
  688.                   "type" : "pic",
  689.                   "width" : "800"
  690.                }
  691.             ],
  692.             "privileges" : [],
  693.             "referId" : "210228908119",
  694.             "sellershowId" : null,
  695.             "separate" : {
  696.                "height" : "14"
  697.             },
  698.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210228908119",
  699.             "title" : "到货挺快的,穿上也很舒服,质量不错",
  700.             "user" : {
  701.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vFILM8xWv08uPHgLPm8YvmQyvkxuvCQyPGHSPHxyPHxT",
  702.                "userNick" : "leahhi",
  703.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vFILM8xWv08uPHgLPm8YvmQyvkxuvCQyPGHSPHxyPHxT"
  704.             },
  705.             "videos" : []
  706.          },
  707.          {
  708.             "accountId" : "738722023",
  709.             "cardType" : "9",
  710.             "commentCount" : "0",
  711.             "favourCount" : "2",
  712.             "favourStatus" : "false",
  713.             "feedType" : "103",
  714.             "gmtCreate" : "1538981245000",
  715.             "id" : "210498415385",
  716.             "isElite" : "true",
  717.             "isTop" : "false",
  718.             "namespace" : "1002",
  719.             "nodeId" : "91163952657",
  720.             "pics" : [
  721.                {
  722.                   "height" : "1066",
  723.                   "id" : "1470206365499903324",
  724.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011kbYlWqIrL2K5re_!!0-rate.jpg",
  725.                   "type" : "pic",
  726.                   "width" : "800"
  727.                }
  728.             ],
  729.             "privileges" : [],
  730.             "referId" : "210357746410",
  731.             "sellershowId" : null,
  732.             "separate" : {
  733.                "height" : "14"
  734.             },
  735.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210357746410",
  736.             "title" : "买给爸爸的,这个季节应该差不多",
  737.             "user" : {
  738.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MmHyXHPzMm--O8c0M8PeOFMHOm8LOmxWOmg4v0QWvGQT",
  739.                "userNick" : "日常一饿",
  740.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MmHyXHPzMm--O8c0M8PeOFMHOm8LOmxWOmg4v0QWvGQT"
  741.             },
  742.             "videos" : []
  743.          },
  744.          {
  745.             "accountId" : "738722023",
  746.             "cardType" : "9",
  747.             "commentCount" : "5",
  748.             "favourCount" : "35",
  749.             "favourStatus" : "false",
  750.             "feedType" : "103",
  751.             "gmtCreate" : "1538981279000",
  752.             "id" : "210466366797",
  753.             "isElite" : "true",
  754.             "isTop" : "false",
  755.             "namespace" : "1002",
  756.             "nodeId" : "91163952657",
  757.             "pics" : [
  758.                {
  759.                   "height" : "1280",
  760.                   "id" : "1537106353424647166",
  761.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2DloLc4TpK1RjSZFKXXa2wXXa_!!0-rate.jpg",
  762.                   "type" : "pic",
  763.                   "width" : "720"
  764.                },
  765.                {
  766.                   "height" : "1280",
  767.                   "id" : "1537106354892991010",
  768.                   "path" : "https://gw3.alicdn.com/tfscom/tuitui/TB2AqU7c4jaK1RjSZKzXXXVwXXa_!!0-rate.jpg",
  769.                   "type" : "pic",
  770.                   "width" : "720"
  771.                }
  772.             ],
  773.             "privileges" : [],
  774.             "referId" : "209714831461",
  775.             "sellershowId" : null,
  776.             "separate" : {
  777.                "height" : "14"
  778.             },
  779.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=209714831461",
  780.             "title" : "人生第一身睡衣,还是选择了南极人这家,睡衣还不错,就是大了那么一丢丢,整体来说还不错,和图片一样,商家客服服务态度也非常棒,建议朋友们可以放心购买哈。",
  781.             "user" : {
  782.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vmkWPCkSvGI0MF8bPFkYOFxGP8QYP8QbvmMhvmRHMFkT",
  783.                "userNick" : "家驹摇滚不死",
  784.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vmkWPCkSvGI0MF8bPFkYOFxGP8QYP8QbvmMhvmRHMFkT"
  785.             },
  786.             "videos" : []
  787.          },
  788.          {
  789.             "accountId" : "738722023",
  790.             "cardType" : "9",
  791.             "commentCount" : "0",
  792.             "favourCount" : "13",
  793.             "favourStatus" : "false",
  794.             "feedType" : "103",
  795.             "gmtCreate" : "1538581406000",
  796.             "id" : "210187113666",
  797.             "isElite" : "true",
  798.             "isTop" : "false",
  799.             "namespace" : "1002",
  800.             "nodeId" : "91163952657",
  801.             "pics" : [
  802.                {
  803.                   "height" : "800",
  804.                   "id" : "1400606359528326602",
  805.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011fSn6OREq78CWNa_!!0-rate.jpg",
  806.                   "type" : "pic",
  807.                   "width" : "1421"
  808.                },
  809.                {
  810.                   "height" : "1422",
  811.                   "id" : "1400606360504172213",
  812.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011fSn6PVHO8ToAL6_!!0-rate.jpg",
  813.                   "type" : "pic",
  814.                   "width" : "800"
  815.                }
  816.             ],
  817.             "privileges" : [],
  818.             "referId" : "210073525258",
  819.             "sellershowId" : null,
  820.             "separate" : {
  821.                "height" : "14"
  822.             },
  823.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210073525258",
  824.             "title" : "衣服真的很好,到底是大牌,摸上去就很厚实,一点也不褪色,没有色差,颜色很亮哦,很漂亮,喜欢,喜欢,大小正好,穿了很舒服,跟老妈每人一件,妈妈很喜欢哦",
  825.             "user" : {
  826.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vkQSPG7evCcSPCc4MmMIXmkuPGPevHZIOm84OFguX8xT",
  827.                "userNick" : "松鼠栗子_",
  828.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vkQSPG7evCcSPCc4MmMIXmkuPGPevHZIOm84OFguX8xT"
  829.             },
  830.             "videos" : []
  831.          },
  832.          {
  833.             "accountId" : "738722023",
  834.             "cardType" : "9",
  835.             "commentCount" : "0",
  836.             "favourCount" : "7",
  837.             "favourStatus" : "false",
  838.             "feedType" : "103",
  839.             "gmtCreate" : "1538581459000",
  840.             "id" : "210165572158",
  841.             "isElite" : "true",
  842.             "isTop" : "false",
  843.             "namespace" : "1002",
  844.             "nodeId" : "91163952657",
  845.             "pics" : [
  846.                {
  847.                   "height" : "1500",
  848.                   "id" : "1414006357269618876",
  849.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011gSAArs1tdshAw6_!!0-rate.jpg",
  850.                   "type" : "pic",
  851.                   "width" : "1125"
  852.                },
  853.                {
  854.                   "height" : "1497",
  855.                   "id" : "1414006360065439102",
  856.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011gSAAuvEsCUqjJu_!!0-rate.jpg",
  857.                   "type" : "pic",
  858.                   "width" : "1125"
  859.                }
  860.             ],
  861.             "privileges" : [],
  862.             "referId" : "210058179565",
  863.             "sellershowId" : null,
  864.             "separate" : {
  865.                "height" : "14"
  866.             },
  867.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=210058179565",
  868.             "title" : "质量还不错,挺好看的",
  869.             "user" : {
  870.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=P8lhM0xLOHQyvCvLP0Q0vkx0vm-hv88LXm8yPm8YMCIT",
  871.                "userNick" : "d***指",
  872.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=P8lhM0xLOHQyvCvLP0Q0vkx0vm-hv88LXm8yPm8YMCIT"
  873.             },
  874.             "videos" : []
  875.          },
  876.          {
  877.             "accountId" : "738722023",
  878.             "cardType" : "9",
  879.             "commentCount" : "0",
  880.             "favourCount" : "10",
  881.             "favourStatus" : "false",
  882.             "feedType" : "103",
  883.             "gmtCreate" : "1538581467000",
  884.             "id" : "210238867647",
  885.             "isElite" : "true",
  886.             "isTop" : "false",
  887.             "namespace" : "1002",
  888.             "nodeId" : "91163952657",
  889.             "pics" : [
  890.                {
  891.                   "height" : "1067",
  892.                   "id" : "1465806356746930802",
  893.                   "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011kHPKuJ69v0A82L_!!0-rate.jpg",
  894.                   "type" : "pic",
  895.                   "width" : "800"
  896.                },
  897.                {
  898.                   "height" : "1067",
  899.                   "id" : "1465806357149411770",
  900.                   "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011kHPKukKvbWvcof_!!0-rate.jpg",
  901.                   "type" : "pic",
  902.                   "width" : "800"
  903.                },
  904.                {
  905.                   "height" : "1067",
  906.                   "id" : "1465806358623897347",
  907.                   "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011kHPKwM7iexuVq6_!!0-rate.jpg",
  908.                   "type" : "pic",
  909.                   "width" : "800"
  910.                }
  911.             ],
  912.             "privileges" : [],
  913.             "referId" : "209955812182",
  914.             "sellershowId" : null,
  915.             "separate" : {
  916.                "height" : "14"
  917.             },
  918.             "targetUrl" : "https://market.m.taobao.com/app/mtb/app-content-detail/pages/detail?wh_weex=true&wh_weex=true&wx_navbar_transparent=true&wx_navbar_hidden=true&forceMuted=true&ids=209955812182",
  919.             "title" : "特别舒服、棉的、很舒服!很软的、颜色一摸一样。感觉质量特别好!很便宜、很开心,下次还要买、扣子也很好,结实、继续支持、品牌就是不一样呀!值得信赖、很开心可以穿好久呀!还想再买一个、很划算,下次买一个妈妈还有家人、这次物有所值!、开心的事情、棉的面料舒适。",
  920.             "user" : {
  921.                "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=Xm7eOmPeMkgLXHxbP07-MClhP0P-MklePFvSOFR-vFgT",
  922.                "userNick" : "!1999",
  923.                "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=Xm7eOmPeMkgLXHxbP07-MClhP0P-MklePFvSOFR-vFgT"
  924.             },
  925.             "videos" : []
  926.          }
  927.       ],
  928.       "pagination" : {
  929.          "direction" : "1",
  930.          "hasMore" : "true",
  931.          "pageNum" : "2",
  932.          "pageSize" : "20"
  933.       },
  934.       "success" : "true"
  935.    },
  936.    "ret" : [ "SUCCESS::调用成功" ],
  937.    "v" : "1.0"
  938. }
复制代码





---------实际结果---------------- 1045806834903352110.png
1051806834810919432.png
1051806837297052398.png
1051806838532254447.png

1002406812601060824.png
1027106843457034547.png
1029006794039082471.png
1031206798402909015.png
1032206801957834897.png
1052406812320446470.png
1116706799399455428.png

想采集啥就采集啥!!!




软件成品下载:
买家秀采集器.rar (302.86 KB, 下载次数: 1)
商乾电商学院,中国最大的电商资源交流基地!
商乾全球电商人、电商交流学习与电商实战技术分享、电商爬虫、生活交流专业网站
  • 官方手机版

  • 微信公众号

  • 商务合作