登录网站,浏览更多精彩内容
您需要 登录 才可以下载或查看,没有账号?加入我们
×
淘宝买家秀开发实录,网上看到一款软件一直可以用买家秀的下载,再加上商乾也想涉足这一块儿,于是变研究一下对方软件的原理。
通过HTTPDebuggerUI 中文版抓包发现
对方都指向同一个网站的网址:
网址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
用易语言助手解析一下:
单纯用上面链接访问提示非法请求的错误。
思路:
对方软件优先访问的网址1的目的是什么?
发现:
- HTTP/1.1 200 OK
- Date: Tue, 16 Jun 2020 08:02:56 GMT
- Content-Type: application/json;charset=UTF-8
- Connection: keep-alive
- ufe-result: A6
- Set-Cookie: t=ebd8036588e0e1156982620c4a56c5c8;Path=/;Domain=.taobao.com;Max-Age=7776000
- Set-Cookie: cookie2=1593450f5c144a9d63fc2cd293056ba5;Path=/;Domain=.taobao.com;Max-Age=-1;HttpOnly
- Set-Cookie: v=0;Path=/;Domain=.taobao.com;Max-Age=-1
- Set-Cookie: _tb_token_=7e656e0be36ba;Path=/;Domain=.taobao.com;Max-Age=-1
- Set-Cookie: _m_h5_tk=68ac28f9019ed51932c0ea263ede3372_1592302496032;Path=/;Domain=taobao.com;Max-Age=604800
- Set-Cookie: _m_h5_tk_enc=181ec045ce216c7dff72579866224719;Path=/;Domain=taobao.com;Max-Age=604800
- S: STATUS_NOT_EXISTED
- x-node: 9aefc6acff92686ff0a141d762c510a9
- Cache-Control: no-cache
- x-eagleeye-id: 0b52070f15922945760328537ecc4d
- Pragma: no-cache
- X-Powered-By: m.taobao.com
- Server: Tengine/Aserver
- s-rt: 6
- x-aserver-sret: SUCCESS
- Timing-Allow-Origin: *
- EagleEye-TraceId: 0b52070f15922945760328537ecc4d
- Content-Length: 108
- {"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文件中
链接二提交的参数:
- appKey: 12574478
- t: 1<span style="background-color: rgb(249, 249, 249);">592294574735</span>
- sign: <span style="background-color: rgb(249, 249, 249);">299b1f4ea33eded9259b3c110c6c27da</span>
- api: mtop.taobao.social.feed.aggregate
- v: 1.0
- timeout: 300000
- timer: 300000
- type: jsonp
- dataType: jsonp
- callback: mtopjsonp1
- 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代码中
找到了sign的生成方法
- sign = md5(token + '&' + t + '&' + appKey + '&' + data)
复制代码 关于上面拼接字符串的几个参数解释一下:
token : cookies中的_m_h5_值加上时间戳,如:
_m_h5_tk=2836432b51e57711db70ca4984ee0cc6_1560102469721
那么:token就为2836432b51e57711db70ca4984ee0cc6
t : 当前时间戳
appkey : 固定值可以在js代码中找到比如我的是 12574478
data :需要查询的参数传递的参数data的值:(这里需要注意一下)
比如浏览器中是这样:
- data:{"params":"{"nodeId":"","sellerId":"50852803"}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}
复制代码 那么python代码中就应该在每个斜杠前再加一个斜杠(转义),如下:
- data:{"params":"{\"nodeId\":\"\",\"sellerId\":\"50852803\"}","cursor":"1","pageNum":"1","pageId":5703,"env":"1"}
复制代码 md5码生成原理:
在上图中g(token + '&' + t + '&' + appKey + '&' + data),其实就是将拼接的字符串生成32位md5码,通过断点找出该源码:
md5 js:代码: - unction g(a) {
- function b(a, b) {
- return a << b | a >>> 32 - b
- }
-
- function c(a, b) {
- var c, d, e, f, g;
- 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
- }
-
- function d(a, b, c) {
- return a & b | ~a & c
- }
-
- function e(a, b, c) {
- return a & c | b & ~c
- }
-
- function f(a, b, c) {
- return a ^ b ^ c
- }
-
- function g(a, b, c) {
- return b ^ (a | ~c)
- }
-
- function h(a, e, f, g, h, i, j) {
- return a = c(a, c(c(d(e, f, g), h), j)), c(b(a, i), e)
- }
-
- function i(a, d, f, g, h, i, j) {
- return a = c(a, c(c(e(d, f, g), h), j)), c(b(a, i), d)
- }
-
- function j(a, d, e, g, h, i, j) {
- return a = c(a, c(c(f(d, e, g), h), j)), c(b(a, i), d)
- }
-
- function k(a, d, e, f, h, i, j) {
- return a = c(a, c(c(g(d, e, f), h), j)), c(b(a, i), d)
- }
-
- function l(a) {
- 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++;
- 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
- }
-
- function m(a) {
- var b, c, d = "", e = "";
- for (c = 0; 3 >= c; c++) b = a >>> 8 * c & 255, e = "0" + b.toString(16), d += e.substr(e.length - 2, 2);
- return d
- }
-
- function n(a) {
- a = a.replace(/\r\n/g, "\n");
- for (var b = "", c = 0; c < a.length; c++) {
- var d = a.charCodeAt(c);
- 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))
- }
- return b
- }
-
- 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,
- H = 11, I = 16, J = 23, K = 6, L = 10, M = 15, N = 21;
- 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);
- var O = m(t) + m(u) + m(v) + m(w);
- return O.toLowerCase()
- }
复制代码易语言生成MD5就方便了直接: python生成MD5码: - def hex_md5(s):
- m = hashlib.md5()
- m.update(s.encode('UTF-8'))
- return m.hexdigest()
复制代码 python代码:
- params = {
- 'appKey': appKey,
- 'data': data
- }
- # 请求空获取cookies
- html = requests.get(url, params=params)
- m_h5_tk = html.cookies['_m_h5_tk']
- m_h5_tk_enc = html.cookies['_m_h5_tk_enc']
复制代码其中params是必不可少的,然后可以根据 token = _m_h5_tk.split('_')[0] 得到token; 然后再根据已知的数据构造请求,就可得到数据; - import hashlib
- import json
- import time
- import requests
- import pymysql as mdb
- def hex_md5(s):
- m = hashlib.md5()
- m.update(s.encode('UTF-8'))
- return m.hexdigest()
- def get_page(index, num):
- url = 'https://acs.m.taobao.com/h5/mtop.taobao.social.feed.aggregate/1.0/'
- appKey = '12574478'
- # 获取当前时间戳
- t = str(int(time.time() * 1000))
- data = '{"params":"{\"nodeId\":\"\",\"sellerId\":\"50852803\",\"pagination\":{\"direction\":\"1\",\"hasMore\":\"true\",\"pageNum\":\"' + str(
- index) + '\",\"pageSize\":\"' + str(num) + '\"}}","cursor":"' + str(
- index) + '","pageNum":"' + str(
- index) + '","pageId":5703,"env":"1"}'
- params = {
- 'appKey': appKey,
- 'data': data
- }
- # 请求空获取cookies
- html = requests.get(url, params=params)
- _m_h5_tk = html.cookies['_m_h5_tk']
- _m_h5_tk_enc = html.cookies['_m_h5_tk_enc']
- token = _m_h5_tk.split('_')[0]
- cookie_t = html.cookies['t']
- u = token + '&' + t + '&' + appKey + '&' + data
- # MD5加密
- sign = hex_md5(u)
- print('秘钥:' + sign)
- # 设置第二次请求的cookie
- headers = {
- 'cookie': '_m_h5_tk=' + _m_h5_tk + '; _m_h5_tk_enc=' + _m_h5_tk_enc,
- }
- params = {
- 'appKey': appKey,
- 't': t,
- 'sign': sign,
- 'data': data
- }
- html = requests.get(url, headers=headers, params=params)
- item = json.loads(html.text)
- # 第一页有21条,第一条无用
- for i in item['data']['list'][-num:]:
- print(i)
- get_page(2, 20)
复制代码
易语言json解析后下载就可以了: - {
- "api" : "mtop.taobao.social.feed.aggregate",
- "data" : {
- "card2" : null,
- "config" : {
- "accountId" : "738722023",
- "layout" : "http://h5.m.taobao.com/app/topic/shopTopic.js",
- "pageName" : "Backyard",
- "spm" : "a2116i.9075633",
- "title" : "买家秀"
- },
- "header" : {
- "cover" : "https://img.alicdn.com/imgextra/i3/738722023/O1CN011QoZhfACnox0kno_!!738722023.jpg",
- "id" : "91163952657",
- "targetUrl" : "https://shop.m.taobao.com/shop/shop_index.htm?user_id=738722023",
- "title" : "南极人官方旗舰店的买家秀"
- },
- "list" : [
- {
- "cardType" : "16",
- "separate" : {
- "height" : "30"
- }
- },
- {
- "cardType" : "5",
- "desc" : "开心-省钱-南极人",
- "separate" : {
- "height" : "30"
- },
- "title" : "公告"
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "15",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1553235226000",
- "id" : "221794234275",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "800",
- "id" : "1739406510655966535",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN01OrfQWw24UV12xeE8l_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "800",
- "id" : "1739406506396449199",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN012elWVL24UV0yJNj6F_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "800",
- "id" : "1739406508701368476",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01rlTcpf24UV10pMvtc_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "800",
- "id" : "1739406508687700352",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01ZgaGpf24UV10oRaC0_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "221174551715",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "文胸收到了,抹上去非常柔软,穿身上非常贴身很舒服也不嘞,内衣穿上很舒服就和没穿一样舒服真的超级好看,以后都不用担心,豪无累赘之感,质感亲肤,清洗不掉色,超舒服像没穿 很贴肤毫无怪异难闻之味,真想不到这么便宜的价格买到如此好的产品!内衣的材质特别柔软亲肤透气而且弹性很好值得购买。穿着挺舒服的,已经是第二次买了,版型比较适合我,料子也还舒服,罩杯合适,肩带不会滑,很贴身!下次还会回购的!",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=PC*-XFHWvCMeOmQ4MC--Xm*HO88bXH*hXFlhMFxuOFxT",
- "userNick" : "@浩哥~",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=PC*-XFHWvCMeOmQ4MC--Xm*HO88bXH*hXFlhMFxuOFxT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "14",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1553235271000",
- "id" : "221728253925",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "300",
- "id" : "1751506513233951064",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01qBnrlt25NuwNTQW52_!!0-rate.jpg",
- "type" : "pic",
- "width" : "400"
- },
- {
- "height" : "400",
- "id" : "1751506504599952056",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN01LrEUHg25NuwE378WW_!!0-rate.jpg",
- "type" : "pic",
- "width" : "300"
- }
- ],
- "privileges" : [],
- "referId" : "221259638999",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "款式时尚,穿着很性感,每一件都很完美!质量尺寸都非常满意,宝贝不错!款式好!质量好!非常喜欢!找这款很久了,颜色也非常好!很喜欢,客服态度很好,给我细心解答了,发货的及时,整个物流很快,",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MG9IMFcbMHQGv8kSMFNyvG9hOFxbXm-IPG-zMCR-MFxT",
- "userNick" : "t***2",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MG9IMFcbMHQGv8kSMFNyvG9hOFxbXm-IPG-zMCR-MFxT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "3",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1543241360000",
- "id" : "214544607082",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1635",
- "id" : "1438306419403575565",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN01sowv7g1iFSR5ZBJ7N_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1242"
- },
- {
- "height" : "1656",
- "id" : "1438306419604308127",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011qxDPy1iFSR5mlYpL_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1242"
- },
- {
- "height" : "1656",
- "id" : "1438306420033865610",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01q6HZwN1iFSR6FpwLq_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1242"
- }
- ],
- "privileges" : [],
- "referId" : "214394264332",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "不错",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vC8yO8kYM0k0PkZhO8cGPmlIPmNbMk7IPGN4M0gbMGkT",
- "userNick" : "SuenLoo",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vC8yO8kYM0k0PkZhO8cGPmlIPmNbMk7IPGN4M0gbMGkT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "3",
- "favourCount" : "6",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1543241299000",
- "id" : "214507846214",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "400",
- "id" : "1438506419206518475",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN016SVJXO1iGNECIyTu7_!!2-rate.png",
- "type" : "pic",
- "width" : "300"
- },
- {
- "height" : "300",
- "id" : "1438506419206214725",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN01BhLZrY1iGNECIxCsv_!!2-rate.png",
- "type" : "pic",
- "width" : "400"
- },
- {
- "height" : "400",
- "id" : "1438506420042153044",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01HmCtYP1iGNEDDWid2_!!0-rate.jpg",
- "type" : "pic",
- "width" : "300"
- }
- ],
- "privileges" : [],
- "referId" : "214475866664",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "是纯棉的哦,质量真心不错呢,买了就不会亏系列,哈哈,买东西还是得来旗舰店啊 ,品质有保证,不错,杠杠的,现在已经穿上了,纯棉的衣服穿着就是舒服,而且不易变形,手感摸着也很柔软,南极人的品质一直都是不错的,物流也很快,值得信赖,美滋滋!!!!!",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MFgSXH84MkQuvF-IXm9hM8cWPF-zPFcYMkRIPmvWPk8T",
- "userNick" : "小小小儿群",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MFgSXH84MkQuvF-IXm9hM8cWPF-zPFcYMkRIPmvWPk8T"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "3",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1543241315000",
- "id" : "214544539022",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "300",
- "id" : "1408106419392871112",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN01uoniEN1g18p9XxZUW_!!2-rate.png",
- "type" : "pic",
- "width" : "400"
- },
- {
- "height" : "400",
- "id" : "1408106419592644949",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN0139BBSn1g18p9lTnnB_!!2-rate.png",
- "type" : "pic",
- "width" : "224"
- }
- ],
- "privileges" : [],
- "referId" : "214474730487",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "东西还是很不错的,值得肯定,而且卖家的服务态度很好,回复速度也是嗖嗖的,实物跟描述的一样,确实是百分百纯棉的,这点还是很满意的,纯棉材质的衣服,穿着也放心,而且纯棉的材质穿着也更亲肤,更舒适,手感也很柔软,而且现在这个天气,穿这个款式还是正好的,不易起球,用来打底也是一个不错的选择,保暖又不显臃肿,哈哈,还是很划算的!!!!!",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=PmRIOFIGvmHWvGI0MF-IOFHYP8cSXH8bPC--OF9hv0cT",
- "userNick" : "心***1",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=PmRIOFIGvmHWvGI0MF-IOFHYP8cSXH8bPC--OF9hv0cT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "2",
- "favourCount" : "5",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248565000",
- "id" : "210706670274",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "992",
- "id" : "1445306365603862088",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011ilW94DlNmqb3eC_!!0-rate.jpg",
- "type" : "pic",
- "width" : "744"
- },
- {
- "height" : "992",
- "id" : "1445306366371002233",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011ilW953gDyzsTqh_!!0-rate.jpg",
- "type" : "pic",
- "width" : "744"
- },
- {
- "height" : "992",
- "id" : "1445306367146414902",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011ilW95u9mEwz9kC_!!0-rate.jpg",
- "type" : "pic",
- "width" : "744"
- }
- ],
- "privileges" : [],
- "referId" : "210452845463",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "宝贝收到了,和描述的一样,是正品,大小合适,很满意。",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MmPeO8kLvm8YXm*zMm*eOFcSXml-PmvyPCQYvHkLM0kT",
- "userNick" : "y***8",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MmPeO8kLvm8YXm*zMm*eOFcSXml-PmvyPCQYvHkLM0kT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "6",
- "favourCount" : "12",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248625000",
- "id" : "210662392234",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "960",
- "id" : "1589606367100547733",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011tQPfVwiFLZ0tkz_!!0-rate.jpg",
- "type" : "pic",
- "width" : "720"
- }
- ],
- "privileges" : [],
- "referId" : "210684363727",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "不错",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MCHSvG8yvHgSPmxLPkQ0MGkSvHlzv8g0Xm--PmMzMmHT",
- "userNick" : "嘟嘟狗在狂奔",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MCHSvG8yvHgSPmxLPkQ0MGkSvHlzv8g0Xm--PmMzMmHT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "3",
- "favourCount" : "9",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248627000",
- "id" : "210685617381",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1065",
- "id" : "1038406366946019931",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011EhuYPOOsQNHHDa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "210604481375",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "这是一个好评模板,不要看了下面都是废话。因为本仙女很懒不想每个宝贝都写好评所以才模仿网友的好评模板,但是这个宝贝不管是质量还是款式都是本仙女喜欢的如果不喜欢本仙女收到会很生气然后这个模板就会变成各种喋喋不体的吐槽,自然不会撒下这个好评给各位淘友一个参考。本宝贝还是极好的,来自一位懒省事的只爱购物不爱写评论只想换积分的仙女",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vFgLvFc4PmHLXHx4v8ZzOHgWOmIYMG-HOmQbPFc4XmgT",
- "userNick" : "一个小草莓10",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vFgLvFc4PmHLXHx4v8ZzOHgWOmIYMG-HOmQbPFc4XmgT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "12",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248768000",
- "id" : "210741047459",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1920",
- "id" : "1268706339506993067",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2QqdFXsbpK1RjSZFyXXX_qFXa_!!2-rate.png",
- "type" : "pic",
- "width" : "1080"
- },
- {
- "height" : "1040",
- "id" : "1268706339809202007",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2gL8DXwHqK1RjSZFkXXX.WFXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "780"
- },
- {
- "height" : "1040",
- "id" : "1268706340880182266",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/TB2a9JDXzTpK1RjSZKPXXa3UpXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "780"
- },
- {
- "height" : "780",
- "id" : "1268706341284315889",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2_rtEXzDpK1RjSZFrXXa78VXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1040"
- }
- ],
- "privileges" : [],
- "referId" : "208866950630",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "挺好的,是正品,质量也挺好,绵绵的,160,87,买M.号正好",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=M8ZhPmP-PFNLMkcWMkcGOFgSMChHMHR-M8ZhvGcYvFIT",
- "userNick" : "1005#KKW",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=M8ZhPmP-PFNLMkcWMkcGOFgSMChHMHR-M8ZhvGcYvFIT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "6",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248744000",
- "id" : "210685641929",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "960",
- "id" : "1987206362244668010",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN012MnQQOamHSU5bQD_!!0-rate.jpg",
- "type" : "pic",
- "width" : "480"
- }
- ],
- "privileges" : [],
- "referId" : "210163560109",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "物流快,穿上好舒服,值得购买。",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MCQ0v8cSXmIyOHPePFNYOFI0XmZzO8*eOHg0X87hXH8T",
- "userNick" : "独家记忆姐",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MCQ0v8cSXmIyOHPePFNYOFI0XmZzO8*eOHg0X87hXH8T"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "6",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248799000",
- "id" : "210685677888",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "800",
- "id" : "1269506368672351767",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011VmLrXGvflvoSg4_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1421"
- }
- ],
- "privileges" : [],
- "referId" : "210550965928",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "睡衣还不错,挺保暖的,穿的很舒服",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=M87-v07eM8lIvmRzO8*-vHZIv88LPGhevGMevGMIO88T",
- "userNick" : "萧雁鸣",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=M87-v07eM8lIvmRzO8*-vHZIv88LPGhevGMevGMIO88T"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "7",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248807000",
- "id" : "210741111222",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1600",
- "id" : "1521306354876997352",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/TB2LSZIdCrqK1RjSZK9XXXyypXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "209794200331",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "衣服质量挺好的,我已经洗过了,蓝盆友和我一人一套。他穿了挺满意",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=OFNGXmPzv8Z-P8*zPFIbvGQYPF-evmI4PH84MmlzXmgT",
- "userNick" : "小土豆的candyrain",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=OFNGXmPzv8Z-P8*zPFIbvGQYPF-evmI4PH84MmlzXmgT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "1",
- "favourCount" : "6",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248800000",
- "id" : "210662480422",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "816",
- "id" : "1312706367240792967",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/O1CN011YyCxjhwAkxOQh3_!!0-rate.jpg",
- "type" : "pic",
- "width" : "612"
- },
- {
- "height" : "690",
- "id" : "1312706367408891693",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011YyCxjtJUuj3B2t_!!0-rate.jpg",
- "type" : "pic",
- "width" : "690"
- },
- {
- "height" : "198",
- "id" : "1312706368311997957",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011YyCxksQq6n7wxY_!!0-rate.jpg",
- "type" : "pic",
- "width" : "195"
- }
- ],
- "privileges" : [],
- "referId" : "210550105820",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "好评,柔软没异味。比想象的好,够厚,够暖!!!!户\n听说好评必须85字?不然没有积分?那么问题来了,怎么样才可以达到85字呢?这个问题在我的脑海里久久不去。马云爸爸怎么可以这样欺负我?不给我买冰阔洛也就算了,还让我一个二年级的小学生评论一定要写85字,哼!好过分啊,一定要记在小本本上",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=P0cGPCv4vmkuvF8bPHx0XF9HOFlHMF8YvG8bOmReMCIT",
- "userNick" : "哈哈哈哈147。",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=P0cGPCv4vmkuvF8bPHx0XF9HOFlHMF8YvG8bOmReMCIT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "6",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1539248845000",
- "id" : "210662568333",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1066",
- "id" : "1173906351457745664",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/TB2sK5Uc9zqK1RjSZPcXXbTepXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "1066",
- "id" : "1173906353385460371",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2M.jec4jaK1RjSZKzXXXVwXXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "209647865175",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "给老公和我一人买了一件,老公还没试,不知道合不合身,我试了下正好,怎么说呢。。质量还可以吧,挺薄的冬天家里有暖气穿着应该正好,就是颜色和自己想的有点出处吧,感觉有点发污,整体感觉只能说一般,物流和包装都很好!",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=XmQSM8*hMmQuMkRhMmQGvmReMHkGOF9HvCc0PHkbvGxT",
- "userNick" : "飞妍辶币",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=XmQSM8*hMmQuMkRhMmQGvmReMHkGOF9HvCc0PHkbvGxT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "3",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538981337000",
- "id" : "210444369482",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1066",
- "id" : "1395006364118959677",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011f38vKkIW2nwA4p_!!2-rate.png",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "210228908119",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "到货挺快的,穿上也很舒服,质量不错",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vFILM8xWv08uPHgLPm8YvmQyvkxuvCQyPGHSPHxyPHxT",
- "userNick" : "leahhi",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vFILM8xWv08uPHgLPm8YvmQyvkxuvCQyPGHSPHxyPHxT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "2",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538981245000",
- "id" : "210498415385",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1066",
- "id" : "1470206365499903324",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011kbYlWqIrL2K5re_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "210357746410",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "买给爸爸的,这个季节应该差不多",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=MmHyXHPzMm--O8c0M8PeOFMHOm8LOmxWOmg4v0QWvGQT",
- "userNick" : "日常一饿",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=MmHyXHPzMm--O8c0M8PeOFMHOm8LOmxWOmg4v0QWvGQT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "5",
- "favourCount" : "35",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538981279000",
- "id" : "210466366797",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1280",
- "id" : "1537106353424647166",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/TB2DloLc4TpK1RjSZFKXXa2wXXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "720"
- },
- {
- "height" : "1280",
- "id" : "1537106354892991010",
- "path" : "https://gw3.alicdn.com/tfscom/tuitui/TB2AqU7c4jaK1RjSZKzXXXVwXXa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "720"
- }
- ],
- "privileges" : [],
- "referId" : "209714831461",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "人生第一身睡衣,还是选择了南极人这家,睡衣还不错,就是大了那么一丢丢,整体来说还不错,和图片一样,商家客服服务态度也非常棒,建议朋友们可以放心购买哈。",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vmkWPCkSvGI0MF8bPFkYOFxGP8QYP8QbvmMhvmRHMFkT",
- "userNick" : "家驹摇滚不死",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vmkWPCkSvGI0MF8bPFkYOFxGP8QYP8QbvmMhvmRHMFkT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "13",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538581406000",
- "id" : "210187113666",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "800",
- "id" : "1400606359528326602",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011fSn6OREq78CWNa_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1421"
- },
- {
- "height" : "1422",
- "id" : "1400606360504172213",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011fSn6PVHO8ToAL6_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "210073525258",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "衣服真的很好,到底是大牌,摸上去就很厚实,一点也不褪色,没有色差,颜色很亮哦,很漂亮,喜欢,喜欢,大小正好,穿了很舒服,跟老妈每人一件,妈妈很喜欢哦",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=vkQSPG7evCcSPCc4MmMIXmkuPGPevHZIOm84OFguX8xT",
- "userNick" : "松鼠栗子_",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=vkQSPG7evCcSPCc4MmMIXmkuPGPevHZIOm84OFguX8xT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "7",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538581459000",
- "id" : "210165572158",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1500",
- "id" : "1414006357269618876",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011gSAArs1tdshAw6_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1125"
- },
- {
- "height" : "1497",
- "id" : "1414006360065439102",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011gSAAuvEsCUqjJu_!!0-rate.jpg",
- "type" : "pic",
- "width" : "1125"
- }
- ],
- "privileges" : [],
- "referId" : "210058179565",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "质量还不错,挺好看的",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=P8lhM0xLOHQyvCvLP0Q0vkx0vm-hv88LXm8yPm8YMCIT",
- "userNick" : "d***指",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=P8lhM0xLOHQyvCvLP0Q0vkx0vm-hv88LXm8yPm8YMCIT"
- },
- "videos" : []
- },
- {
- "accountId" : "738722023",
- "cardType" : "9",
- "commentCount" : "0",
- "favourCount" : "10",
- "favourStatus" : "false",
- "feedType" : "103",
- "gmtCreate" : "1538581467000",
- "id" : "210238867647",
- "isElite" : "true",
- "isTop" : "false",
- "namespace" : "1002",
- "nodeId" : "91163952657",
- "pics" : [
- {
- "height" : "1067",
- "id" : "1465806356746930802",
- "path" : "https://gw2.alicdn.com/tfscom/tuitui/O1CN011kHPKuJ69v0A82L_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "1067",
- "id" : "1465806357149411770",
- "path" : "https://gw.alicdn.com/tfscom/tuitui/O1CN011kHPKukKvbWvcof_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- },
- {
- "height" : "1067",
- "id" : "1465806358623897347",
- "path" : "https://gw1.alicdn.com/tfscom/tuitui/O1CN011kHPKwM7iexuVq6_!!0-rate.jpg",
- "type" : "pic",
- "width" : "800"
- }
- ],
- "privileges" : [],
- "referId" : "209955812182",
- "sellershowId" : null,
- "separate" : {
- "height" : "14"
- },
- "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",
- "title" : "特别舒服、棉的、很舒服!很软的、颜色一摸一样。感觉质量特别好!很便宜、很开心,下次还要买、扣子也很好,结实、继续支持、品牌就是不一样呀!值得信赖、很开心可以穿好久呀!还想再买一个、很划算,下次买一个妈妈还有家人、这次物有所值!、开心的事情、棉的面料舒适。",
- "user" : {
- "userLogo" : "https://wwc.alicdn.com/avatar/getAvatar.do?type=sns&width=64&height=64&userIdStr=Xm7eOmPeMkgLXHxbP07-MClhP0P-MklePFvSOFR-vFgT",
- "userNick" : "!1999",
- "userUrl" : "https://h5.m.taobao.com/account/index.html?userId=Xm7eOmPeMkgLXHxbP07-MClhP0P-MklePFvSOFR-vFgT"
- },
- "videos" : []
- }
- ],
- "pagination" : {
- "direction" : "1",
- "hasMore" : "true",
- "pageNum" : "2",
- "pageSize" : "20"
- },
- "success" : "true"
- },
- "ret" : [ "SUCCESS::调用成功" ],
- "v" : "1.0"
- }
复制代码
---------实际结果----------------
想采集啥就采集啥!!!
软件成品下载:
买家秀采集器.rar
(302.86 KB, 下载次数: 1)
|