最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【记录】分析趣配音app中数据来源和如何爬取-2

app crifan 1463浏览 0评论
接着继续记录和整理过程
1 个人用户详情
1
https://childapi.xxx.com/member?sign=a5d2f9bd3f98214ab3cf8de47e14833c×tamp=1536917132&uid=0&auth_token=0&member_id=4864238
返回:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
    "status": 1,
    "msg": "",
    "data": {
        "id": "4864238",
        "uc_id": "8638661",
        "nickname": "夏竹",
        "avatar": "
https://img.xxx.cn/2018-06-30/5b3734cb58bee.jpg
",
        "mobile": "",
        "app_type": "2",
        "version": "3.9.0",
        "push_info": "{\"comments\":\"1\"}",
        "signature": "其实皮一下很开心",
        "birthday": "2017-09-24",
        "sex": "2",
        "school": "1435652",
        "area": "4403",
        "type": "2",
        "status": "1",
        "reg_time": "1465926412",
        "fans": "973",
        "uid": "4864238",
        "follows": "1516",
        "views": "228",
        "photos": "71",
        "guestbooks": "0",
        "shows": "118",
        "words": "0",
        "collects": "4",
        "school_str": "h华x新小学",
        "is_black": "0",
        "support_collect": "4",
        "cover": "
https://img.xxx.cn/cover_default.jpg
",
        "medal": [],
        "is_crown": "0",
        "search_id": "4927133",
        "ugcactive": {
            "icon": "",
            "title": "字幕组",
            "sub_title": "新活动",
            "url": "
http://ugctest.xxx.cn/app/index/index?
"
        },
        "is_following": "0",
        "is_follow": "0",
        "follow_nickname": "",
        "user_number": "8862171",
        "score_time": "",
        "vip_endtime": "0",
        "is_vip": "0",
        "libu_level": "0",
        "claims_url": "
https://child.xxx.cn/home/basic/report?type=3&tyid=0&uid=MDAwMDAwMDAwMLB0nm8&member_id=MDAwMDAwMDAwMLF3yGSBe67esaR0cg
",
        "dav": "",
        "dv_type": "0",
        "dv_status": "0",
        "libu_vip_endtime": "0",
        "libu_vip": "0",
        "libu_first": "0"
    }
}
2 个人-》作品
1
https://childapi.xxx.com/member/show_list?sign=9fbde32314aff6b77be9b64b2464f78a×tamp=1536917132&uid=0&auth_token=0&start=0&member_id=4864238&rows=20
返回:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "144138897",
            "uid": "4864238",
            "course_id": "56931",
            "album_id": "3353",
            "video": "
<div style="width: 640px;" class="wp-video"><!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->
<span class="mejs-offscreen">视频播放器</span><div id="mep_0" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-1"><video class="wp-video-shortcode" id="video-81727-1_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-07-12/id1531385153u4864238.mp4?_=1" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-07-12/id1531385153u4864238.mp4?_=1"><a href="https://cdn2.xxx.cn/2018-07-12/id1531385153u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-07-12/id1531385153u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_0" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_0" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_0" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-07-12 16:46",
            "score": "91",
            "comments": "0",
            "supports": "2",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "你是谁呢",
            "pic": "
https://img.xxx.cn/2018-07-03/5b3b28404a45b.jpg
",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "135839205",
            "uid": "4864238",
            "course_id": "47109",
            "album_id": "2732",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_1" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-2"><video class="wp-video-shortcode" id="video-81727-2_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-05-20/id1526824662u4864238.mp4?_=2" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-05-20/id1526824662u4864238.mp4?_=2"><a href="https://cdn2.xxx.cn/2018-05-20/id1526824662u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-05-20/id1526824662u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_1" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_1" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_1" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-05-20 21:58",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "4AU1_6ack",
            "pic": "
https://img.xxx.cn/2017-08-22/15033852648751.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127076629",
            "uid": "4864238",
            "course_id": "48050",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_2" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-3"><video class="wp-video-shortcode" id="video-81727-3_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523008217u4864238.mp4?_=3" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523008217u4864238.mp4?_=3"><a href="https://cdn2.xxx.cn/2018-04-06/id1523008217u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523008217u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_2" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_2" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_2" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 17:50",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "The Very Busy Hen",
            "pic": "
https://img.xxx.cn/2017-10-10/59dc70cd13b75.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127066625",
            "uid": "4864238",
            "course_id": "48049",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_3" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-4"><video class="wp-video-shortcode" id="video-81727-4_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523005013u4864238.mp4?_=4" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523005013u4864238.mp4?_=4"><a href="https://cdn2.xxx.cn/2018-04-06/id1523005013u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523005013u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_3" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_3" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_3" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 16:57",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Where Things Grow",
            "pic": "
https://img.xxx.cn/2018-01-02/5a4b50742af1f.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127064585",
            "uid": "4864238",
            "course_id": "48048",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_4" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-5"><video class="wp-video-shortcode" id="video-81727-5_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523004317u4864238.mp4?_=5" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523004317u4864238.mp4?_=5"><a href="https://cdn2.xxx.cn/2018-04-06/id1523004317u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523004317u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_4" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_4" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_4" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 16:45",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Eggs",
            "pic": "
https://img.xxx.cn/2017-09-25/15063050969710.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127063495",
            "uid": "4864238",
            "course_id": "48047",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_5" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-6"><video class="wp-video-shortcode" id="video-81727-6_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523003931u4864238.mp4?_=6" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523003931u4864238.mp4?_=6"><a href="https://cdn2.xxx.cn/2018-04-06/id1523003931u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523003931u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_5" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_5" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_5" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 16:39",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Ant Can't",
            "pic": "
https://img.xxx.cn/2017-12-12/5a2f4394caa3d.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127062516",
            "uid": "4864238",
            "course_id": "19026",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_6" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-7"><video class="wp-video-shortcode" id="video-81727-7_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523003588u4864238.mp4?_=7" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523003588u4864238.mp4?_=7"><a href="https://cdn2.xxx.cn/2018-04-06/id1523003588u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523003588u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_6" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_6" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_6" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 16:33",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Flying",
            "pic": "
https://img.xxx.cn/2015-11-05/563ab8ffab531.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "127062267",
            "uid": "4864238",
            "course_id": "19025",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_7" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-8"><video class="wp-video-shortcode" id="video-81727-8_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-04-06/id1523003499u4864238.mp4?_=8" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-04-06/id1523003499u4864238.mp4?_=8"><a href="https://cdn2.xxx.cn/2018-04-06/id1523003499u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-04-06/id1523003499u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_7" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_7" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_7" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-04-06 16:31",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Woof!",
            "pic": "
https://img.xxx.cn/2015-11-23/5652dd5bdb693.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "125702129",
            "uid": "4864238",
            "course_id": "48052",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_8" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-9"><video class="wp-video-shortcode" id="video-81727-9_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-03-31/id1522467464u4864238.mp4?_=9" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-03-31/id1522467464u4864238.mp4?_=9"><a href="https://cdn2.xxx.cn/2018-03-31/id1522467464u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-03-31/id1522467464u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_8" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_8" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_8" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-03-31 11:38",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "Smells",
            "pic": "
https://img.xxx.cn/2017-09-14/15053560331421.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "125701397",
            "uid": "4864238",
            "course_id": "48051",
            "album_id": "1121",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_9" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-10"><video class="wp-video-shortcode" id="video-81727-10_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-03-31/id1522467232u4864238.mp4?_=10" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-03-31/id1522467232u4864238.mp4?_=10"><a href="https://cdn2.xxx.cn/2018-03-31/id1522467232u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-03-31/id1522467232u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_9" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_9" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_9" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-03-31 11:35",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "The Painter",
            "pic": "
https://img.xxx.cn/2018-01-19/5a616fc50b5b0.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "116185098",
            "uid": "4864238",
            "course_id": "19568",
            "album_id": "3069",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_10" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-11"><video class="wp-video-shortcode" id="video-81727-11_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-02-12/id1518439452u4864238.mp4?_=11" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-02-12/id1518439452u4864238.mp4?_=11"><a href="https://cdn2.xxx.cn/2018-02-12/id1518439452u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-02-12/id1518439452u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_10" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_10" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_10" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-02-12 20:44",
            "score": "-1",
            "comments": "0",
            "supports": "1",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "小狗的生日祝福",
            "pic": "
https://img.xxx.cn/2017-07-18/596d6a90d0d9e.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "115538265",
            "uid": "4864238",
            "course_id": "19568",
            "album_id": "3069",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_11" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-12"><video class="wp-video-shortcode" id="video-81727-12_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-02-10/id1518239258u4864238.mp4?_=12" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-02-10/id1518239258u4864238.mp4?_=12"><a href="https://cdn2.xxx.cn/2018-02-10/id1518239258u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-02-10/id1518239258u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_11" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_11" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_11" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-02-10 13:07",
            "score": "-1",
            "comments": "0",
            "supports": "1",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "小狗的生日祝福",
            "pic": "
https://img.xxx.cn/2017-07-18/596d6a90d0d9e.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "115423736",
            "uid": "4864238",
            "course_id": "40359",
            "album_id": "3069",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_12" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-13"><video class="wp-video-shortcode" id="video-81727-13_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-02-09/id1518184493u4864238.mp4?_=13" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-02-09/id1518184493u4864238.mp4?_=13"><a href="https://cdn2.xxx.cn/2018-02-09/id1518184493u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-02-09/id1518184493u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_12" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_12" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_12" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-02-09 21:55",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "第三天-对不起  上",
            "pic": "
https://img.xxx.cn/2017-01-20/14849061627408.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "115419093",
            "uid": "4864238",
            "course_id": "32776",
            "album_id": "1700",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_13" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-14"><video class="wp-video-shortcode" id="video-81727-14_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2018-02-09/id1518183848u4864238.mp4?_=14" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-02-09/id1518183848u4864238.mp4?_=14"><a href="https://cdn2.xxx.cn/2018-02-09/id1518183848u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2018-02-09/id1518183848u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_13" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_13" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_13" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2018-02-09 21:44",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": " 热心的小松鼠",
            "pic": "
https://img.xxx.cn/2018-01-19/5a6196552829d.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105647707",
            "uid": "4864238",
            "course_id": "45709",
            "album_id": "2569",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_14" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-15"><video class="wp-video-shortcode" id="video-81727-15_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513691707u4864238.mp4?_=15" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513691707u4864238.mp4?_=15"><a href="https://cdn2.xxx.cn/2017-12-19/id1513691707u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513691707u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_14" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_14" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_14" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:55",
            "score": "-1",
            "comments": "2",
            "supports": "4",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "AA56 Green",
            "pic": "
https://img.xxx.cn/2017-06-05/14966499089444.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105646982",
            "uid": "4864238",
            "course_id": "45708",
            "album_id": "2569",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_15" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-16"><video class="wp-video-shortcode" id="video-81727-16_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513691608u4864238.mp4?_=16" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513691608u4864238.mp4?_=16"><a href="https://cdn2.xxx.cn/2017-12-19/id1513691608u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513691608u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_15" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_15" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_15" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:53",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "AA55 Ten",
            "pic": "
https://img.xxx.cn/2017-06-05/14966496311995.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105646279",
            "uid": "4864238",
            "course_id": "45707",
            "album_id": "2569",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_16" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-17"><video class="wp-video-shortcode" id="video-81727-17_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513691485u4864238.mp4?_=17" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513691485u4864238.mp4?_=17"><a href="https://cdn2.xxx.cn/2017-12-19/id1513691485u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513691485u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_16" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_16" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_16" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:51",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "AA54 Nine",
            "pic": "
https://img.xxx.cn/2017-06-05/14966496314676.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105644958",
            "uid": "4864238",
            "course_id": "45706",
            "album_id": "2569",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_17" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-18"><video class="wp-video-shortcode" id="video-81727-18_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513691314u4864238.mp4?_=18" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513691314u4864238.mp4?_=18"><a href="https://cdn2.xxx.cn/2017-12-19/id1513691314u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513691314u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_17" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_17" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_17" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:48",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "AA53 Eight",
            "pic": "
https://img.xxx.cn/2017-06-05/14966496314235.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105633766",
            "uid": "4864238",
            "course_id": "21648",
            "album_id": "1058",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_18" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-19"><video class="wp-video-shortcode" id="video-81727-19_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513690055u4864238.mp4?_=19" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513690055u4864238.mp4?_=19"><a href="https://cdn2.xxx.cn/2017-12-19/id1513690055u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513690055u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_18" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_18" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_18" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:27",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "U11 Enjoy a story",
            "pic": "
https://img.xxx.cn/2015-11-04/14466186944035.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "105632664",
            "uid": "4864238",
            "course_id": "21647",
            "album_id": "1058",
            "video": "
<div style="width: 640px;" class="wp-video"><span class="mejs-offscreen">视频播放器</span><div id="mep_19" class="mejs-container mejs-container-keyboard-inactive wp-video-shortcode mejs-video" tabindex="0" role="application" aria-label="视频播放器" style="width: 640px; height: 360px; min-width: 16006px;"><div class="mejs-inner"><div class="mejs-mediaelement"><mediaelementwrapper id="video-81727-20"><video class="wp-video-shortcode" id="video-81727-20_html5" width="640" height="360" preload="metadata" src="https://cdn2.xxx.cn/2017-12-19/id1513689951u4864238.mp4?_=20" style="width: 640px; height: 360px;"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-12-19/id1513689951u4864238.mp4?_=20"><a href="https://cdn2.xxx.cn/2017-12-19/id1513689951u4864238.mp4" data-original-title="" title="">https://cdn2.xxx.cn/2017-12-19/id1513689951u4864238.mp4</a></video></mediaelementwrapper></div><div class="mejs-layers"><div class="mejs-poster mejs-layer" style="display: none; width: 100%; height: 100%;"></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-loading"><span class="mejs-overlay-loading-bg-img"></span></div></div><div class="mejs-overlay mejs-layer" style="display: none; width: 100%; height: 100%;"><div class="mejs-overlay-error"></div></div><div class="mejs-overlay mejs-layer mejs-overlay-play" style="width: 100%; height: 100%;"><div class="mejs-overlay-button" role="button" tabindex="0" aria-label="播放" aria-pressed="false"></div></div></div><div class="mejs-controls"><div class="mejs-button mejs-playpause-button mejs-play"><button type="button" aria-controls="mep_19" title="播放" aria-label="播放" tabindex="0"></button></div><div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"><span class="mejs-currenttime">00:00</span></div><div class="mejs-time-rail"><span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="时间轴" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"><span class="mejs-time-buffering" style="display: none;"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-hovered no-hover"></span><span class="mejs-time-handle"><span class="mejs-time-handle-content"></span></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div><div class="mejs-time mejs-duration-container"><span class="mejs-duration">00:00</span></div><div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="mep_19" title="静音" aria-label="静音" tabindex="0"></button><a href="javascript:void(0);" class="mejs-volume-slider" aria-label="音量" aria-valuemin="0" aria-valuemax="100" role="slider" aria-orientation="vertical"><span class="mejs-offscreen">使用上/下箭头键来增高或降低音量。</span><div class="mejs-volume-total"><div class="mejs-volume-current" style="bottom: 0px; height: 100%;"></div><div class="mejs-volume-handle" style="bottom: 100%; margin-bottom: 0px;"></div></div></a></div><div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="mep_19" title="全屏" aria-label="全屏" tabindex="0"></button></div></div></div></div></div>
",
            "create_time": "2017-12-19 21:25",
            "score": "-1",
            "comments": "0",
            "supports": "0",
            "views": "0",
            "diamonds": "0",
            "nickname": "夏竹",
            "avatar": "",
            "school": "1435652",
            "area": "4403",
            "birthday": "2017-09-24",
            "course_title": "U11 Read",
            "pic": "
https://img.xxx.cn/2015-12-02/565e54da14fb4.jpg
",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        }
    ]
}
试了start获取分页:
可以的,比如
用户共118个作品,start=115,返回(剩下的最后)3个
3 个人-粉丝
1
https://childapi.xxx.com/member/fans?auth_token=0&member_id=13494467&rows=20&start=0×tamp=1536919109752&uid=0&sign=4be774e38c0619529b1c7556011fd9ba
返回:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
{
    "status": 1,
    "msg": "",
    "data": {
        "num": "0",
        "lists": [
            {
                "id": "18327098",
                "uid": "34445635",
                "sort": "0",
                "nickname": "夜空欣然",
                "avatar": "
https://img.xxx.cn/1524054250686.jpg
",
                "signature": "我是学霸",
                "school": "0",
                "area": "3717",
                "sex": "0",
                "school_str": "",
                "fans": "0",
                "shows": "45",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18317324",
                "uid": "37906655",
                "sort": "0",
                "nickname": "小趣友_91m3jl",
                "avatar": "
https://img.xxx.cn/avatar_default.png
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "0",
                "shows": "0",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18316395",
                "uid": "37834020",
                "sort": "0",
                "nickname": "小趣友_sljpwh",
                "avatar": "
https://img.xxx.cn/avatar_default.png
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "0",
                "shows": "0",
                "follows": "2",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1"
            },
            {
                "id": "18310902",
                "uid": "32527428",
                "sort": "0",
                "nickname": "Charlize",
                "avatar": "
https://img.xxx.cn/2018-03-05/5a9d41510e917.jpg
",
                "signature": "",
                "school": "1469440",
                "area": "3301",
                "sex": "2",
                "school_str": "文瀚幼儿园",
                "fans": "2",
                "shows": "342",
                "follows": "4",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1"
            },
            {
                "id": "18305894",
                "uid": "34304425",
                "sort": "0",
                "nickname": "甜心儿~Anny",
                "avatar": "
https://img.xxx.cn/1523942669880.jpg
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "2",
                "school_str": "",
                "fans": "0",
                "shows": "3",
                "follows": "3",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18302296",
                "uid": "2578153",
                "sort": "0",
                "nickname": "营养快线",
                "avatar": "
https://img.xxx.cn/2018-01-14/5a5b2c3480a95.jpg
",
                "signature": "天天开心快乐的宝贝!",
                "school": "0",
                "area": "0",
                "sex": "2",
                "school_str": "",
                "fans": "3",
                "shows": "248",
                "follows": "3",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18287273",
                "uid": "37817715",
                "sort": "0",
                "nickname": "小趣友_tsqno1",
                "avatar": "
https://img.xxx.cn/avatar_default.png
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "0",
                "shows": "0",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18284226",
                "uid": "2813786",
                "sort": "0",
                "nickname": "天空小子",
                "avatar": "
https://img.xxx.cn/2018-08-07/5b68ec929050a_thumb.jpg
",
                "signature": "师",
                "school": "1412212",
                "area": "4403",
                "sex": "1",
                "school_str": "丰丽学校小学部",
                "fans": "88",
                "shows": "191",
                "follows": "150",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1"
            },
            {
                "id": "18103209",
                "uid": "4305371",
                "sort": "0",
                "nickname": "梦回千转、几世轮回",
                "avatar": "
https://img.xxx.cn/2018-08-28/5b85475158d72_thumb.jpg
",
                "signature": "鹿晗鹿晗鹿晗鹿晗",
                "school": "1417916",
                "area": "11",
                "sex": "1",
                "school_str": "开阳三小",
                "fans": "271",
                "shows": "689",
                "follows": "664",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "17912820",
                "uid": "35906553",
                "sort": "0",
                "nickname": "雪瑶",
                "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/ADhNXsZBCGzuevBQ741evxg1l1wORLibIyaepjBxicHUAYSsktwqEpxtEZuGceib3B6wy1ARNNwZibm0hdnzwfXAng/132
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "3",
                "shows": "5",
                "follows": "5",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "17874176",
                "uid": "5186225",
                "sort": "0",
                "nickname": "大治",
                "avatar": "
https://img.xxx.cn/2018-07-11/5b44ea03ec736_thumb.jpg
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "1",
                "shows": "85",
                "follows": "4",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1"
            },
            {
                "id": "17822844",
                "uid": "13501458",
                "sort": "0",
                "nickname": "林连浩",
                "avatar": "
https://img.xxx.cn/2018-07-16/5b4c9aee7c8f4.jpg
",
                "signature": "我是一个小孩",
                "school": "1057560",
                "area": "3310",
                "sex": "1",
                "school_str": "玉环实验学校",
                "fans": "11",
                "shows": "83",
                "follows": "19",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "17751462",
                "uid": "15876008",
                "sort": "0",
                "nickname": "小趣友_n6bkex",
                "avatar": "
https://img.xxx.cn/avatar_default.png
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "0",
                "shows": "45",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "17691424",
                "uid": "34420565",
                "sort": "0",
                "nickname": "杨晓禹",
                "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/2mMhyEbKBJCRfuZoTaZ7LXE6KcYpfap2LnQg29uHhJtQz8tmoWnHUM4JWYlds9tDYYEJePmln2xqktjHrVc0XA/132
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "14",
                "shows": "105",
                "follows": "29",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "17653587",
                "uid": "34035594",
                "sort": "0",
                "nickname": "肖肖吖回粉号",
                "avatar": "
https://img.xxx.cn/2018-07-16/5b4bda22c634b.jpg
",
                "signature": "(⁎⁍̴̛ᴗ⁍̴̛⁎)、",
                "school": "1323793",
                "area": "4301",
                "sex": "2",
                "school_str": "和平完小",
                "fans": "223",
                "shows": "0",
                "follows": "465",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            }
        ]
    }
}
4 个人-关注
1
https://childapi.xxx.com/member/follows?auth_token=0&member_id=32527428&rows=20&start=0×tamp=1536919513254&uid=0&sign=e56d81d7373be0b53ecc8fe16cb2df2c
返回:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
    "status": 1,
    "msg": "",
    "data": {
        "num": "0",
        "lists": [
            {
                "id": "18310902",
                "uid": "13494467",
                "sort": "0",
                "nickname": "李昕睿",
                "avatar": "
https://img.xxx.cn/avatar_2017-02-16_1487237565_13494467.jpeg
",
                "signature": "我成长我快乐!",
                "school": "1059719",
                "area": "3310",
                "sex": "2",
                "school_str": "实验小学部",
                "fans": "15",
                "shows": "46",
                "follows": "0",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "18153823",
                "uid": "819150",
                "sort": "0",
                "nickname": "Emma",
                "avatar": "
https://img.xxx.cn/2018-02-27/5a956867b4d39.jpg
",
                "signature": "盖昱雯",
                "school": "1057942",
                "area": "1401",
                "sex": "2",
                "school_str": "山西通宝育杰学校",
                "fans": "4368",
                "shows": "2344",
                "follows": "1911",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1"
            },
            {
                "id": "17992093",
                "uid": "32697637",
                "sort": "0",
                "nickname": "张姗姗",
                "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIicFc5m5niaSJibwwKvd34Zz7szWicVgQXF9GZhF3pbu6xIdELZDD6l7ictlP3bK36j62cvsCLFgcIm3Q/132
",
                "signature": "",
                "school": "0",
                "area": "0",
                "sex": "0",
                "school_str": "",
                "fans": "1",
                "shows": "52",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            },
            {
                "id": "14401475",
                "uid": "2590959",
                "sort": "0",
                "nickname": "11小朋友",
                "avatar": "
https://img.xxx.cn/2016-10-29/5814170d720e2.jpg
",
                "signature": "",
                "school": "1108615",
                "area": "1105",
                "sex": "2",
                "school_str": "小小小幼儿园",
                "fans": "3",
                "shows": "121",
                "follows": "1",
                "is_following": "0",
                "is_follow": "0",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0"
            }
        ]
    }
}

转载请注明:在路上 » 【记录】分析趣配音app中数据来源和如何爬取-2

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
122 queries in 0.250 seconds, using 22.43MB memory