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

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

app crifan 1197浏览 0评论
 1 主页home信息
1
https://childapi.xxx.com/home/index/v3
返回:
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
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
{
    "status": 1,
    "data": [
        {
            "title": "幻灯片",
            "sub_title": "",
            "module": "slider",
            "icon": "",
            "slider": [
                {
                    "id": "6334",
                    "title": "开学红包大派送",
                    "pic": "
https://img.xxx.cn/2018-09-07/5b9235bd20a06.jpg
",
                    "type": "custom",
                    "son_type": "",
                    "show_id": "0",
                    "is_share": "0",
                    "content": "",
                    "scheme_url": "",
                    "sub_title": "",
                    "show_type": "0",
                    "sort": "1",
                    "shows": "134196",
                    "views": "6495",
                    "weight": "0",
                    "score_type": "0",
                    "score": "0",
                    "share_pic": "
https://img.xxx.cn/2018-09-07/5b9235bd20a06.jpg
",
                    "html": "",
                    "clickreport": [],
                    "displayreport": [],
                    "url": "
http://shaoer.xxx.com/basic/slider?adv=MDAwMDAwMDAwMLGdrqyBeKKh
"
                },
                {
                    "id": "6423",
                    "title": "掌门1对1",
                    "pic": "
https://img.xxx.cn/2018-09-11/5b97ccbfc92ae.jpg
",
                    "type": "custom",
                    "son_type": "",
                    "show_id": "0",
                    "is_share": "0",
                    "content": "",
                    "scheme_url": "",
                    "sub_title": "",
                    "show_type": "0",
                    "sort": "2",
                    "shows": "11380",
                    "views": "135",
                    "weight": "10",
                    "score_type": "2",
                    "score": "1",
                    "share_pic": "
https://img.xxx.cn/2018-09-11/5b97ccbfc92ae.jpg
",
                    "html": "",
                    "clickreport": [],
                    "displayreport": [],
                    "url": "
http://shaoer.xxx.com/basic/slider?adv=MDAwMDAwMDAwMLGdsquArqKh
"
                },
                {
                    "id": "6284",
                    "title": "人教英语同步课程",
                    "pic": "
https://img.xxx.cn/2018-09-04/5b8dfecbda8bc.jpg
",
                    "type": "custom",
                    "son_type": "",
                    "show_id": "0",
                    "is_share": "0",
                    "content": "",
                    "scheme_url": "",
                    "sub_title": "",
                    "show_type": "0",
                    "sort": "3",
                    "shows": "120027",
                    "views": "4988",
                    "weight": "0",
                    "score_type": "0",
                    "score": "0",
                    "share_pic": "
https://img.xxx.cn/2018-09-04/5b8dfecbda8bc.jpg
",
                    "html": "",
                    "clickreport": [],
                    "displayreport": [],
                    "url": "
http://shaoer.xxx.com/basic/slider?adv=MDAwMDAwMDAwMLGdqmaBeKKh
"
                },
                {
                    "id": "3686",
                    "title": "海豚杯活动",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b95c7f06fdad.jpg
",
                    "type": "album",
                    "son_type": "",
                    "show_id": "0",
                    "is_share": "0",
                    "content": "",
                    "scheme_url": "",
                    "sub_title": "",
                    "show_type": "0",
                    "sort": "4",
                    "shows": "0",
                    "views": "0",
                    "weight": "0",
                    "score_type": "0",
                    "score": "0",
                    "share_pic": "
https://img.xxx.cn/2018-09-10/5b95c7f06fdad.jpg
",
                    "html": "",
                    "clickreport": [],
                    "displayreport": [],
                    "url": "
http://shaoer.xxx.com/album/detail?album_id=3686
"
                },
                {
                    "id": "61082",
                    "title": "用你吃奶的力气舔他",
                    "pic": "
https://img.xxx.cn/2018-09-06/5b908ccfe0a56.jpg
",
                    "type": "course",
                    "son_type": "",
                    "show_id": "0",
                    "is_share": "0",
                    "content": "",
                    "scheme_url": "",
                    "sub_title": "",
                    "show_type": "0",
                    "sort": "5",
                    "shows": "0",
                    "views": "0",
                    "weight": "0",
                    "score_type": "0",
                    "score": "0",
                    "share_pic": "
https://img.xxx.cn/2018-09-06/5b908ccfe0a56.jpg
",
                    "html": "",
                    "clickreport": [],
                    "displayreport": [],
                    "url": "
http://shaoer.xxx.com/course/detail_new?course_id=61082
"
                }
            ]
        },
        {
            "title": "channel",
            "sub_title": "",
            "module": "channel",
            "icon": "",
            "channel": [
                {
                    "id": 0,
                    "title": "配音打卡",
                    "pic": "
https://img.xxx.cn/index01.png
",
                    "module": "sign",
                    "url": ""
                },
                {
                    "id": 5,
                    "title": "配音课堂",
                    "pic": "
https://img.xxx.cn/index02.png
",
                    "module": "album",
                    "url": ""
                },
                {
                    "id": 2,
                    "title": "我的教材",
                    "pic": "
https://img.xxx.cn/index03.png
",
                    "module": "my_album",
                    "url": ""
                },
                {
                    "id": 0,
                    "title": "精彩活动",
                    "pic": "
https://img.xxx.cn/index04.png
",
                    "module": "activity",
                    "url": ""
                },
                {
                    "id": 0,
                    "title": "大赛专区",
                    "pic": "
https://img.xxx.cn/index05.png
",
                    "module": "match",
                    "url": ""
                }
            ]
        },
        {
            "module": "leap",
            "type": "1",
            "title": "近期课程",
            "icon": "
https://img.xxx.cn/2018-08-21/5b7bce2411431.png
",
            "leap_course": {
                "title": "少儿xxxTV已上线,点击体验~",
                "cover_src": "
https://img.xxx.cn/study-index-leap.png
"
            }
        },
        {
            "id": "2",
            "title": "我的教材",
            "sub_title": "定制教材,同步年段学习",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e3415022b.png
",
            "module": "my_album",
            "my_album": []
        },
        {
            "title": "活动",
            "sub_title": "",
            "module": "ad",
            "icon": "",
            "ad": {
                "id": "6312",
                "title": "“惠”学大促",
                "pic": "
https://img.xxx.cn/2018-09-06/5b910612d4fe5.gif
",
                "type": "custom",
                "son_type": "",
                "show_id": "0",
                "is_share": "0",
                "content": "",
                "scheme_url": "",
                "sub_title": "",
                "show_type": "0",
                "sort": "0",
                "shows": "0",
                "views": "2650",
                "weight": "0",
                "score_type": "0",
                "score": "0",
                "share_pic": "
https://img.xxx.cn/2018-09-06/5b910612d4fe5.gif
",
                "html": "",
                "clickreport": [],
                "displayreport": [],
                "url": "
http://shaoer.xxx.com/basic/slider?adv=MDAwMDAwMDAwMLGdrqqAnqKh
"
            }
        },
        {
            "title": "磨耳浸泡区",
            "sub_title": "培养英语语感一定要坚持磨耳朵",
            "module": "passive_listening",
            "icon": "
https://img.xxx.cn/2018-09-03/5b8d596ea8f8c.png
",
            "passive_listening": {
                "percent": "0%",
                "my_minutes": "0",
                "total": "501",
                "avatar_list": [
                    "
https://img.xxx.cn/avatar_default.png
",
                    "
https://img.xxx.cn/dubkid_34025597_20180909091016_photoalbum_type_corp
",
                    "
https://img.xxx.cn/avatar_default.png
"
                ],
                "audio": {
                    "id": "124",
                    "title": "磨耳音频",
                    "pic": "
https://img.xxx.cn/2018-09-08/5b93a7d7bc8fd.jpg
"
                },
                "video": {
                    "id": "71",
                    "title": "磨耳动画",
                    "pic": "
https://img.xxx.cn/2018-09-08/5b93baa3d096c.jpg
"
                }
            }
        },
        {
            "id": "1",
            "title": "今日更新",
            "snum": "4",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e2ddd5f57.png
",
            "cover": "
https://img.xxx.cn/2016-01-15/569899b759d34.png
",
            "sub_title": "",
            "module": "course",
            "course": [
                {
                    "id": "17159",
                    "title": "大和小的单词",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b95fe624431d.jpg
",
                    "views": "32048",
                    "create_time": "2015-08-20 12:00",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "60791",
                    "title": "到处乱跑的小苹花",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963b0c44074.jpg
",
                    "views": "2947",
                    "create_time": "2018-08-29 11:43",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "46351",
                    "title": "16 Weather",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963af5d0827.jpg
",
                    "views": "3751",
                    "create_time": "2017-07-18 11:23",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "29127",
                    "title": "数数滑滑梯的小黄人",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963ae2eafb2.jpg
",
                    "views": "50793",
                    "create_time": "2016-02-15 16:46",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                }
            ]
        },
        {
            "id": "5",
            "title": "每日一句",
            "snum": "4",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e2ec861b0.png
",
            "cover": "
https://img.xxx.cn/2017-07-10/59633ac740955.png
",
            "sub_title": "一天一句,口语系统练习",
            "module": "course",
            "course": [
                {
                    "id": "47867",
                    "title": "王者荣耀外服之芈月",
                    "pic": "
https://img.xxx.cn/2018-09-05/5b8fa8f3e0308.jpg
",
                    "views": "235646",
                    "create_time": "2017-09-20 09:41",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "60692",
                    "title": "不是终结而是开始",
                    "pic": "
https://img.xxx.cn/2018-08-28/5b84a4b3c2c8d.jpg
",
                    "views": "27583",
                    "create_time": "2018-07-20 09:45",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "52156",
                    "title": "你挑错时间了",
                    "pic": "
https://img.xxx.cn/2018-09-05/5b8fa0b25eab6.jpg
",
                    "views": "13837",
                    "create_time": "2017-06-12 14:26",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "59899",
                    "title": "记得保持微笑哦",
                    "pic": "
https://img.xxx.cn/2018-08-23/5b7e1ee0659e4.jpg
",
                    "views": "41044",
                    "create_time": "2017-01-05 16:31",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                }
            ]
        },
        {
            "id": 1,
            "title": "动画明星",
            "sub_title": "动画明星",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e2fa4d1dc.png
",
            "module": "album_bag",
            "album_bag": [
                {
                    "id": "51",
                    "title": "趣读馆",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963a1b2ad06.png
",
                    "create_time": "0"
                },
                {
                    "id": "38",
                    "title": "人教熊",
                    "pic": "
https://img.xxx.cn/2018-05-04/5aec13e379cfc.png
",
                    "create_time": "0"
                },
                {
                    "id": "18",
                    "title": "乐迪",
                    "pic": "
https://img.xxx.cn/2017-11-10/5a05799591fd2.png
",
                    "create_time": "0"
                },
                {
                    "id": "15",
                    "title": "泰迪",
                    "pic": "
https://img.xxx.cn/2017-07-14/596896a3b5fd3.png
",
                    "create_time": "0"
                },
                {
                    "id": "53",
                    "title": "喜羊羊",
                    "pic": "
https://img.xxx.cn/2018-09-11/5b9777449b16c.png
",
                    "create_time": "0"
                },
                {
                    "id": "46",
                    "title": "小鹦鹉",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963ef276874.png
",
                    "create_time": "0"
                },
                {
                    "id": "14",
                    "title": "波噜噜",
                    "pic": "
https://img.xxx.cn/2017-07-14/5968940787b11.png
",
                    "create_time": "0"
                },
                {
                    "id": "52",
                    "title": "玛莎与熊",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b963a881f39b.png
",
                    "create_time": "0"
                }
            ]
        },
        {
            "id": "1",
            "title": "动画工厂",
            "sub_title": "动漫世界,化身角色扮演",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e30863542.png
",
            "snum": 4,
            "module": "album",
            "album": [
                {
                    "id": "2616",
                    "album_title": "功夫熊猫:盖世传奇S03E05",
                    "pic": "
https://img.xxx.cn/2017-07-12/5965c7cc4f4a8.jpg
",
                    "album_price": "0.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "354723",
                    "is_needbuy": "0"
                },
                {
                    "id": "3369",
                    "album_title": "抢劫坚果店每日一句",
                    "pic": "
https://img.xxx.cn/2018-07-09/5b43104f9dc09.jpg
",
                    "album_price": "0.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "675833",
                    "is_needbuy": "0"
                },
                {
                    "id": "3103",
                    "album_title": "WaWaYaYa爱读原版分级读物一年级",
                    "pic": "
https://img.xxx.cn/2018-05-04/5aebc44d96148.png
",
                    "album_price": "29.80",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "83908",
                    "is_needbuy": "1"
                },
                {
                    "id": "3437",
                    "album_title": "小鹦鹉学口语--谈论日常生活",
                    "pic": "
https://img.xxx.cn/2018-09-05/5b8f7d5c7caa5.jpg
",
                    "album_price": "1.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "937",
                    "is_needbuy": "1"
                }
            ]
        },
        {
            "id": "3",
            "title": "启蒙专区",
            "sub_title": "少儿拼读,趣味基础学习",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e3163b170.png
",
            "snum": 4,
            "module": "album",
            "album": [
                {
                    "id": "836",
                    "album_title": "豌豆公主",
                    "pic": "
https://img.xxx.cn/2015-09-09/55eff747a43a2.jpg
",
                    "album_price": "0.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "530689",
                    "is_needbuy": "0"
                },
                {
                    "id": "3629",
                    "album_title": "Learning to GetAlong",
                    "pic": "
https://img.xxx.cn/2018-03-30/5abdbb844addc.jpg
",
                    "album_price": "0.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "2595",
                    "is_needbuy": "0"
                },
                {
                    "id": "3437",
                    "album_title": "小鹦鹉学口语--谈论日常生活",
                    "pic": "
https://img.xxx.cn/2018-09-05/5b8f7d5c7caa5.jpg
",
                    "album_price": "1.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "937",
                    "is_needbuy": "1"
                },
                {
                    "id": "3621",
                    "album_title": "泡泡少儿英语 入门级 Fun",
                    "pic": "
https://img.xxx.cn/2018-08-22/5b7d0b0b21fee.jpg
",
                    "album_price": "0.00",
                    "is_vip": "0",
                    "is_strate": "0",
                    "views": "7876",
                    "is_needbuy": "0"
                }
            ]
        },
        {
            "id": "3",
            "title": "欢乐儿歌",
            "snum": "4",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e32262afa.png
",
            "cover": "
https://img.xxx.cn/2016-01-15/569899d2f3ed6.png
",
            "sub_title": "流行歌单,解锁最热旋律",
            "module": "course",
            "course": [
                {
                    "id": "60971",
                    "title": "启蒙儿歌-12345",
                    "pic": "
https://img.xxx.cn/2018-08-29/5b85f5ea7bb2f.jpg
",
                    "views": "2972",
                    "create_time": "2018-08-24 11:53",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "60762",
                    "title": "我们肯定能搞定",
                    "pic": "
https://img.xxx.cn/2018-03-26/5ab8959805f68.jpg
",
                    "views": "27139",
                    "create_time": "2018-03-23 10:00",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "49374",
                    "title": "枫叶之舞",
                    "pic": "
https://img.xxx.cn/2018-08-27/5b83a9859c907.jpg
",
                    "views": "10440",
                    "create_time": "2017-09-21 14:19",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "60761",
                    "title": "蔡徐坤巴比龙",
                    "pic": "
https://img.xxx.cn/2018-08-24/5b7f82d586d29.jpg
",
                    "views": "20522",
                    "create_time": "2018-08-07 15:06",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                }
            ]
        },
        {
            "id": "4",
            "title": "汉语乐园",
            "snum": "4",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e3349d9a4.png
",
            "cover": "
https://img.xxx.cn/2016-01-15/56989a03f2625.png
",
            "sub_title": "趣味汉语,母语配音也在行",
            "module": "course",
            "course": [
                {
                    "id": "47533",
                    "title": "五杀被电话打断",
                    "pic": "
https://img.xxx.cn/2017-09-21/59c325e2c4634.jpg
",
                    "views": "239624",
                    "create_time": "2017-09-01 15:36",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "50938",
                    "title": "连开门都不会吗",
                    "pic": "
https://img.xxx.cn/2018-08-29/5b85fd79a2da9.jpg
",
                    "views": "32949",
                    "create_time": "2017-12-19 14:51",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "45208",
                    "title": "唐诗-静夜思",
                    "pic": "
https://img.xxx.cn/2017-07-31/597f020917964.jpg
",
                    "views": "17467",
                    "create_time": "2017-04-07 16:32",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                },
                {
                    "id": "61282",
                    "title": "别小看美羊羊",
                    "pic": "
https://img.xxx.cn/2018-09-10/5b95e71372b21.jpg
",
                    "views": "1826",
                    "create_time": "2017-12-08 10:15",
                    "is_vip": "0",
                    "data_from": 0,
                    "request_id": "0",
                    "is_collect": 0,
                    "is_unlock": "1"
                }
            ]
        },
        {
            "id": "4",
            "title": "中考专区",
            "sub_title": "备战中考,真题题库专项训练",
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e356db09b.png
",
            "snum": 4,
            "module": "album",
            "album": [
                {
                    "id": "2099",
                    "album_title": "江苏省中考英语口语卷8",
                    "pic": "
https://img.xxx.cn/2016-12-07/58478027bdcce.jpg
",
                    "album_price": "0.00",
                    "is_vip": "1",
                    "is_strate": "0",
                    "views": "5241",
                    "is_needbuy": "0"
                },
                {
                    "id": "2103",
                    "album_title": "江苏省中考英语口语卷10",
                    "pic": "
https://img.xxx.cn/2016-12-07/58478726af57c.jpg
",
                    "album_price": "0.00",
                    "is_vip": "1",
                    "is_strate": "0",
                    "views": "4986",
                    "is_needbuy": "0"
                },
                {
                    "id": "2124",
                    "album_title": "沈阳市中考英语口语测试题",
                    "pic": "
https://img.xxx.cn/2016-12-10/584b719900766.jpg
",
                    "album_price": "0.00",
                    "is_vip": "1",
                    "is_strate": "0",
                    "views": "47980",
                    "is_needbuy": "0"
                },
                {
                    "id": "2123",
                    "album_title": "江苏省中考英语口语测试题",
                    "pic": "
https://img.xxx.cn/2016-12-10/584b71af3e56d.jpg
",
                    "album_price": "0.00",
                    "is_vip": "1",
                    "is_strate": "0",
                    "views": "192252",
                    "is_needbuy": "0"
                }
            ]
        },
        {
            "title": "最新配音",
            "sub_title": "最新作品,等你围观挑战",
            "snum": 4,
            "icon": "
https://img.xxx.cn/2018-02-24/5a90e3633f49e.png
",
            "module": "show",
            "show": [
                {
                    "id": "155470463",
                    "uid": "31895610",
                    "course_id": "27786",
                    "video": "
<div style="width: 640px;" class="wp-video"><!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->
<video class="wp-video-shortcode" id="video-81731-1" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-12/153672156370231895610.mp4?_=1"><a href="https://cdn2.xxx.cn/2018-09-12/153672156370231895610.mp4">https://cdn2.xxx.cn/2018-09-12/153672156370231895610.mp4</a></video></div>
",
                    "album_id": "1664",
                    "create_time": "2018-09-12 11:06",
                    "info": "",
                    "nickname": "BObby",
                    "avatar": "
https://img.xxx.cn/1515912189883.jpg
",
                    "school": "0",
                    "area": "0",
                    "birthday": "0000-00-00",
                    "course_title": "海尼曼-宠物店",
                    "pic": "
https://img.xxx.cn/2016-02-19/56c67fc899cb4.jpg
",
                    "permit_client": "1,2,3,4",
                    "permit_show": "1",
                    "is_crown": 0,
                    "school_str": "",
                    "dav": "",
                    "dv_type": "0",
                    "is_vip": "0",
                    "comments": "0",
                    "supports": "0",
                    "views": "0",
                    "share_views": "0"
                },
                {
                    "id": "155470475",
                    "uid": "34132761",
                    "course_id": "48375",
                    "video": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-2" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-12/153672174829034132761.mp4?_=2"><a href="https://cdn2.xxx.cn/2018-09-12/153672174829034132761.mp4">https://cdn2.xxx.cn/2018-09-12/153672174829034132761.mp4</a></video></div>
",
                    "album_id": "2885",
                    "create_time": "2018-09-12 11:09",
                    "info": "",
                    "nickname": "小蛮",
                    "avatar": "
http://thirdqq.qlogo.cn/qqapp/1104670989/C3370DECB2E429864D6D6A71246131AF/100
",
                    "school": "0",
                    "area": "0",
                    "birthday": "0000-00-00",
                    "course_title": "A-派特是个大坏蛋",
                    "pic": "
https://img.xxx.cn/2017-10-10/59dc2beb044f0.jpg
",
                    "permit_client": "1,2,3,4",
                    "permit_show": "1",
                    "is_crown": 0,
                    "school_str": "",
                    "dav": "",
                    "dv_type": "0",
                    "is_vip": "0",
                    "comments": "0",
                    "supports": "0",
                    "views": "0",
                    "share_views": "0"
                },
                {
                    "id": "155470462",
                    "uid": "11041426",
                    "course_id": "21719",
                    "video": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-3" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-12/id1536721518u11041426.mp4?_=3"><a href="https://cdn2.xxx.cn/2018-09-12/id1536721518u11041426.mp4">https://cdn2.xxx.cn/2018-09-12/id1536721518u11041426.mp4</a></video></div>
",
                    "album_id": "2026",
                    "create_time": "2018-09-12 11:06",
                    "info": "",
                    "nickname": "小趣友_8nz1f0",
                    "avatar": "
https://img.xxx.cn/avatar_default.png
",
                    "school": "0",
                    "area": "0",
                    "birthday": "0000-00-00",
                    "course_title": "堆雪人的诱惑",
                    "pic": "
https://img.xxx.cn/2016-12-13/584f57f48b81d.jpg
",
                    "permit_client": "1,2,3,4",
                    "permit_show": "1",
                    "is_crown": 0,
                    "school_str": "",
                    "dav": "",
                    "dv_type": "0",
                    "is_vip": "0",
                    "comments": "0",
                    "supports": "0",
                    "views": "0",
                    "share_views": "0"
                },
                {
                    "id": "155470459",
                    "uid": "3943617",
                    "course_id": "36676",
                    "video": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-4" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-12/15367215251763943617.mp4?_=4"><a href="https://cdn2.xxx.cn/2018-09-12/15367215251763943617.mp4">https://cdn2.xxx.cn/2018-09-12/15367215251763943617.mp4</a></video></div>
",
                    "album_id": "3423",
                    "create_time": "2018-09-12 11:05",
                    "info": "",
                    "nickname": "Nala",
                    "avatar": "
http://wx.qlogo.cn/mmopen/WCOpwDmrFvuA85oh3oJRFQTXiapicqvBF4vFgccsATiaNyTY2AmPUfy0jM8aibOyFvjEnJ7ePtL2x9UuqaWT1zUsnLPf3knvSB9v/0
",
                    "school": "0",
                    "area": "0",
                    "birthday": "0000-00-00",
                    "course_title": "我们去打篮球吧",
                    "pic": "
https://img.xxx.cn/2016-07-25/14694131695767.jpg
",
                    "permit_client": "1,2,3,4",
                    "permit_show": "1",
                    "is_crown": 0,
                    "school_str": "",
                    "dav": "",
                    "dv_type": "0",
                    "is_vip": "0",
                    "comments": "0",
                    "supports": "0",
                    "views": "0",
                    "share_views": "0"
                }
            ]
        }
    ],
    "msg": ""
}
其中:
  • 今日更新模块中有course的id
    • 后续即可根据id去获取课程详情
接下来需要:
搞清楚category_id对应分类
-》通过:
返回的内容和调试发现:
(a)https://childapi.xxx.com/course/get_course_list
分类category ID
分类名称
1
今日更新
5
每日一句
3
欢乐儿歌
4
汉语乐园
2 课程详情
1
https://childapi.xxx.com/course/detail_new?course_id=61288
返回:
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
{
    "status": 1,
    "msg": "",
    "data": {
        "id": "61288",
        "title": "我们有很多共同点",
        "description": "麦洛找了很多它和小猫的共同点,试图让小猫不那么害羞,可是小猫并不吃这一套。",
        "video": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-5" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4?_=5"><a href="https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4">https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4</a></video></div>
",
        "video_srt": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-6" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4?_=6"><a href="https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4">https://cdn2.xxx.cn/2018-09-10/15365514898246.mp4</a></video></div>
",
        "audio": "
<!--[if lt IE 9]><script>document.createElement('audio');</script><![endif]-->
<audio class="wp-audio-shortcode" id="audio-81731-1" preload="none" style="width: 100%;" controls="controls"><source type="audio/mpeg" src="https://cdn2.xxx.cn/2018-09-10/15365514892570.mp3?_=1"><a href="https://cdn2.xxx.cn/2018-09-10/15365514892570.mp3">https://cdn2.xxx.cn/2018-09-10/15365514892570.mp3</a></audio>
",
        "pic": "
https://img.xxx.cn/2018-09-10/5b9634a3d742d.jpg
",
        "if_subtitle": "0",
        "dif_level": "3",
        "subtitle_en": "
https://cdn2.xxx.cn/2018-09-10/15365514894833.srt
",
        "subtitle_num": "6",
        "category_id": "10",
        "shows": "353",
        "views": "2270",
        "editor": "xxxMargaret",
        "editor_uid": "0",
        "tag": "小兔子麦洛,野猫",
        "status": "1",
        "create_time": "2016-01-26 11:38",
        "isalbum": "0",
        "top": "0",
        "ifshow": "1",
        "update_time": "1536658200",
        "sort": "-249308",
        "check": "1",
        "copyright": "1",
        "is_vip": "0",
        "show_peoples": "350",
        "score_peoples": "38",
        "is_score": "2",
        "is_needbuy": "0",
        "duration": "28",
        "bookOriginalId": "0",
        "permit_client": "2,4,1,3",
        "assign_times": "0",
        "copy": "视频片段摘自:“Milo and the wild cat _ Cartoon for kids”,本视频仅供免费学习使用!如需观看完整版,请支持正版!",
        "redirect": {
            "title": "",
            "url": "",
            "sort": "0"
        },
        "editors": [
            {
                "title": "上传",
                "nickname": "xxxMargaret",
                "uid": 0
            },
            {
                "title": "听译",
                "nickname": "妞妞的蛋卷",
                "uid": 0
            },
            {
                "title": "审校",
                "nickname": "酥酥Jesus",
                "uid": 0
            },
            {
                "title": "制作",
                "nickname": "徐婷",
                "uid": 0
            }
        ],
        "share_talk": "",
        "share_pic": "
https://img.xxx.cn/2018-09-10/5b9634a3d742d.jpg
",
        "share_url": "
https://child.xxx.cn/index.php?m=home&c=Activity&a=childshare_video&course=MDAwMDAwMDAwMLGdpquCe8yh
",
        "score_type": 4,
        "score_weight": [
            {
                "low": "0",
                "height": "55",
                "weight": "1.20"
            },
            {
                "low": "56",
                "height": "70",
                "weight": "1.15"
            },
            {
                "low": "71",
                "height": "80",
                "weight": "1.10"
            },
            {
                "low": "81",
                "height": "90",
                "weight": "1.05"
            },
            {
                "low": "91",
                "height": "100",
                "weight": "1.00"
            }
        ],
        "album_id": null,
        "is_strate": "0",
        "if_strate_buy": "0",
        "strate_audio_id": "0",
        "category": "今日更新",
        "nature": "",
        "album_title": "",
        "share_title": "我发现了一个超有意思的今日更新片段",
        "share_desc": "《我们有很多共同点》,快来围观吧",
        "share_friend": "我发现了一个超有意思的今日更新片段《我们有很多共同点》",
        "skip_url": "",
        "strate_url": "",
        "strate_isbuy": 0,
        "strate_pic": "
https://img.xxx.cn/strate_detail.png
",
        "album_isbuy": 0,
        "feedback_url": "
https://child.xxx.cn/home/basic/course_feedback?uid=0&course_id=61288
",
        "video_adver": [],
        "course_adver": [
            {
                "id": "6427",
                "title": "想和老外“无障碍交流”?来这里",
                "pic": "
https://img.xxx.cn/2018-09-11/5b97cdc9be2b8.jpg
",
                "type": "custom",
                "son_type": "",
                "show_id": "0",
                "is_share": "0",
                "content": "",
                "scheme_url": "",
                "sub_title": "",
                "show_type": "0",
                "sort": "0",
                "shows": "10985",
                "views": "392",
                "weight": "10",
                "score_type": "2",
                "score": "2",
                "share_pic": "
https://img.xxx.cn/2018-09-11/5b97cdc9be2b8.jpg
",
                "html": "",
                "clickreport": [],
                "displayreport": [],
                "url": "
http://shaoer.xxx.com/basic/slider?adv=MDAwMDAwMDAwMLGdsquBrqKh
"
            }
        ]
    }
}
其中有我们要的
3 用户配音视频=show 的详情
1
https://childapi.xxx.com/show/detail?show_id=60377593
返回:
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
{
    "status": 1,
    "msg": "",
    "data": {
        "nickname": "苑芳群金牌组段可馨",
        "avatar": "
https://img.xxx.cn/avatar_default.png
",
        "school": "0",
        "area": "0",
        "birthday": "0000-00-00",
        "school_str": "",
        "course_id": "15159",
        "course_title": "不要低估他",
        "pic": "
https://img.xxx.cn/2018-09-10/5b963b467896c.jpg
",
        "is_vip": "0",
        "isalbum": "0",
        "dif_level": "3",
        "permit_client": "2,4,1,3",
        "permit_show": "1",
        "id": "60377593",
        "uid": "4232324",
        "video": "
<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-81731-7" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://cdn2.xxx.cn/2017-06-20/id1497960117u4232324.mp4?_=7"><a href="https://cdn2.xxx.cn/2017-06-20/id1497960117u4232324.mp4">https://cdn2.xxx.cn/2017-06-20/id1497960117u4232324.mp4</a></video></div>
",
        "album_id": "0",
        "create_time": "2017-06-20 20:03",
        "info": "",
        "score": "-1",
        "score_accuracy": "-1",
        "score_fluency": "-1",
        "score_integrate": "-1",
        "share_talk": "",
        "is_crown": "0",
        "audio": "",
        "share_title": "这是大神苑芳群金牌组段可馨的配音作品",
        "share_desc": "《不要低估他》,快来围观吧",
        "share_friend": "快来围观大神苑芳群金牌组段可馨的配音作品《不要低估他》",
        "user_vip": "0",
        "category": "今日更新",
        "nature": "美国,冒险",
        "album_title": "",
        "comments": "24",
        "supports": "193",
        "views": "1011",
        "share_views": "720",
        "diamonds": "20",
        "feedback_url": "
https://child.xxx.cn/index.php?m=home&c=basic&a=course_feedback&uid=0&auth_token=&course_id=15159
",
        "share_url": "
https://children2.xxx.com/index.php?m=home&c=show&a=share&sharefrom=other&id=MDAwMDAwMDAwMLGdoqyBsciVsbeEcg
",
        "report_url": "
https://child.xxx.cn/home/basic/report?type=2&tyid=60377593&uid=MDAwMDAwMDAwMLB0nm8&member_id=MDAwMDAwMDAwMLF3qqyAobLdsKR0cg
",
        "show_report_url": "
https://child.xxx.cn/home/basic/report?type=1&tyid=60377593&uid=MDAwMDAwMDAwMLB0nm8&member_id=MDAwMDAwMDAwMLF3qqyAobLdsKR0cg
",
        "is_following": 0,
        "dav": "",
        "dv_type": "0"
    }
}
其中:
  • course_id:对应的原始视频,即 课程course:
    • 相关的:course_title
  • id:show的本身的id
  • uid:用户的id
  • video:mp4视频地址
  • dif_level:难度等级
4 每日一句 点击 更多,进入课程列表
其中需要有header,否则无法抓取
header中有idfa:
【已解决】idfa是什么意思和用途
1
https://childapi.xxx.com/course/get_course_list?sign=4e89d3ae91d6e5c2a05908be477e913d&uid=0&sort=new&level=all&nature_style=all&start=0&category_id=1&auth_token=0&ishow=0&nature_area=all&rows=10&nature_id=all&timestamp=1536819997
还要加上各个headers:
可以返回course的列表:
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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "15164",
            "title": "汤姆猫是妈妈?",
            "pic": "
",
            "views": "134519",
            "create_time": "2015-01-20 11:53",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "2",
            "duration": "41",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "22661",
            "title": "受骗的公主",
            "pic": "
",
            "views": "37528",
            "create_time": "2015-11-16 17:34",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "27",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "31314",
            "title": "灾难公主",
            "pic": "
",
            "views": "102231",
            "create_time": "2016-03-22 16:00",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "38",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "49454",
            "title": "你说啥 我听不清",
            "pic": "
",
            "views": "350645",
            "create_time": "2017-09-21 11:29",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "30",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "53654",
            "title": "这点小把戏还难不倒我-单人声女",
            "pic": "
",
            "views": "53530",
            "create_time": "2018-03-20 11:39",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "48",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "24341",
            "title": "颜色精灵来咯",
            "pic": "
",
            "views": "22493",
            "create_time": "2015-12-08 09:34",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "35",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "22202",
            "title": "芭比迟到了",
            "pic": "
",
            "views": "145931",
            "create_time": "2015-10-21 10:36",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "34",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "36121",
            "title": "万圣节到了",
            "pic": "
",
            "views": "139090",
            "create_time": "2016-04-25 14:18",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "14",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "29414",
            "title": "伤心的美人鱼",
            "pic": "
",
            "views": "54012",
            "create_time": "2016-02-19 14:18",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "36",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "35859",
            "title": "【白雪公主】吻别生气鬼",
            "pic": "
",
            "views": "45364",
            "create_time": "2016-04-19 14:55",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "3",
            "duration": "59",
            "data_from": 1,
            "request_id": "1536820753462614",
            "is_collect": 0,
            "is_unlock": "1"
        }
    ]
}
其中每次根据指定的start=0,rows=10,就返回对应的10个
然后继续去:
  • 排序:
    • 最热
  • 难度:
    • 入门
  • 属性
    • 对话
  • 地区
    • 美国
  • 风格
    • 教育
对应接口是:
1
https://childapi.xxx.com/course/get_course_list?sign=10a6ef89568a3e6614cf684fd1ae76c0×tamp=1536821026&uid=0&sort=hot&level=1&nature_style=353&start=0&category_id=1&auth_token=0&ishow=0&nature_area=346&rows=10&nature_id=361
sign
10a6ef89568a3e6614cf684fd1ae76c0
timestamp
1536821026
uid
0
sort
hot
最热
level
1
入门
nature_style
353
风格:教育
start
0
category_id
1
auth_token
0
ishow
0
nature_area
346
地区:美国
rows
10
nature_id
361
属性:对话
返回:
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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "14648",
            "title": "小猪教你数数",
            "pic": "
",
            "views": "42739",
            "create_time": "2015-07-06 17:38",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "40",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "14726",
            "title": "小火车认字母",
            "pic": "
",
            "views": "90286",
            "create_time": "2015-07-07 15:08",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "97",
            "assign_times": "5",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15357",
            "title": "K发音技巧 ",
            "pic": "
",
            "views": "24789",
            "create_time": "2015-07-20 14:43",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "34",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15394",
            "title": "学习字母X",
            "pic": "
",
            "views": "14495",
            "create_time": "2015-07-20 18:08",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "31",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15396",
            "title": "学习字母Y ",
            "pic": "
",
            "views": "20107",
            "create_time": "2015-07-20 18:10",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "30",
            "assign_times": "1",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15397",
            "title": "学习字母V ",
            "pic": "
",
            "views": "39483",
            "create_time": "2015-07-20 18:11",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "30",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15398",
            "title": "学习字母Z",
            "pic": "
",
            "views": "37565",
            "create_time": "2015-07-20 18:12",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "30",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15545",
            "title": "at发音练习1 ",
            "pic": "
",
            "views": "20602",
            "create_time": "2015-07-22 14:47",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "32",
            "assign_times": "0",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15600",
            "title": "反义词",
            "pic": "
",
            "views": "2639",
            "create_time": "2015-07-23 09:36",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "50",
            "assign_times": "1",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        },
        {
            "id": "15602",
            "title": "房间的名字 1 ",
            "pic": "
",
            "views": "36062",
            "create_time": "2015-07-23 10:05",
            "is_vip": "0",
            "is_needbuy": "0",
            "dif_level": "1",
            "duration": "41",
            "assign_times": "6",
            "data_from": 0,
            "request_id": "0",
            "is_collect": 0,
            "is_unlock": "1"
        }
    ]
}
再去试试:
start=xxx
的效果:
测出最大course个数:36090
如果sort=hot,最大个数只有:1900多个
5 course详情-》已配音小伙伴
1
https://childapi.xxx.com/course/last_show_peoples?sign=da0a90e3c7ee2f7656cbae6575c3521d×tamp=1536895345&uid=0&auth_token=0&course_id=59901&start=0&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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "155754904",
            "uid": "5197476",
            "create_time": "1536884036",
            "uc_id": "25197476",
            "nickname": "小趣友_l9m2bc",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 25431284
        },
        {
            "id": "155754032",
            "uid": "37552709",
            "create_time": "1536881861",
            "uc_id": "37552709",
            "nickname": "Care about you",
            "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJubKkogkSKTIMWm7hiaYOFFq3Tc3eW3EiajJ7EUx62hICeuFAhXdRcJnLlrM3cLjOKpibicGnhNhahzg/132
",
            "birthday": "0000-00-00",
            "user_number": 37796507
        },
        {
            "id": "155753453",
            "uid": "37898241",
            "create_time": "1536881426",
            "uc_id": "37898241",
            "nickname": "小趣友_x6uyk4",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 38142048
        },
        {
            "id": "155752255",
            "uid": "3874830",
            "create_time": "1536880780",
            "uc_id": "16527158",
            "nickname": "小趣友_xvqgk5",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 16760855
        },
        {
            "id": "155751126",
            "uid": "902762",
            "create_time": "1536880313",
            "uc_id": "4936070",
            "nickname": "小鹿",
            "avatar": "
https://img.xxx.cn/2017-07-14/59687f2bc781b_thumb.jpg
",
            "birthday": "1960-01-01",
            "user_number": 5159071
        },
        {
            "id": "155749095",
            "uid": "36434832",
            "create_time": "1536879529",
            "uc_id": "36434832",
            "nickname": "林皓",
            "avatar": "
https://img.xxx.cn/2018-07-28/5b5baae051076.jpg
",
            "birthday": "2018-07-28",
            "user_number": 36678447
        },
        {
            "id": "155747108",
            "uid": "33904553",
            "create_time": "1536878677",
            "uc_id": "33904553",
            "nickname": "小趣友_eorjba",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 34147774
        },
        {
            "id": "155742520",
            "uid": "4512181",
            "create_time": "1536850719",
            "uc_id": "24512181",
            "nickname": "Richard",
            "avatar": "
https://img.xxx.cn/2017-11-13/5a098dcfa68a7.jpg
",
            "birthday": "2010-11-22",
            "user_number": 24745791
        },
        {
            "id": "155741125",
            "uid": "3630561",
            "create_time": "1536849702",
            "uc_id": "23630561",
            "nickname": "王贺",
            "avatar": "
https://img.xxx.cn/2017-03-11/58c351db6f73e.jpg
",
            "birthday": "2008-02-16",
            "user_number": 23863767
        },
        {
            "id": "155740268",
            "uid": "5163390",
            "create_time": "1536849284",
            "uc_id": "25163390",
            "nickname": "LIN CHAN",
            "avatar": "
http://q.qlogo.cn/qqapp/1104670989/EF23D36D1087AB95C90DE9B21449ECF6/100
",
            "birthday": "0000-00-00",
            "user_number": 25397196
        },
        {
            "id": "155738917",
            "uid": "31079617",
            "create_time": "1536848760",
            "uc_id": "31079617",
            "nickname": "小趣友_56y9m1",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 31313717
        },
        {
            "id": "155738158",
            "uid": "33257807",
            "create_time": "1536848524",
            "uc_id": "33257807",
            "nickname": "☞╰つ笑ぷ倾城ら☜",
            "avatar": "
http://thirdqq.qlogo.cn/qqapp/1104670989/6C3E58EF4A6178CD14D9D34C48666F69/100
",
            "birthday": "0000-00-00",
            "user_number": 33501007
        },
        {
            "id": "155728509",
            "uid": "4226082",
            "create_time": "1536846513",
            "uc_id": "24226082",
            "nickname": "民民",
            "avatar": "
http://q.qlogo.cn/qqapp/1104670989/B04659CBBCE95DA05F6D0043CCC57C00/100
",
            "birthday": "0000-00-00",
            "user_number": 24459581
        },
        {
            "id": "155725018",
            "uid": "4391733",
            "create_time": "1536845998",
            "uc_id": "24391733",
            "nickname": "王婧",
            "avatar": "
https://img.xxx.cn/2018-07-19/5b503809460ee.jpg
",
            "birthday": "2007-08-09",
            "user_number": 24625332
        },
        {
            "id": "155721807",
            "uid": "31661168",
            "create_time": "1536845569",
            "uc_id": "31661168",
            "nickname": "安霞",
            "avatar": "
http://wx.qlogo.cn/mmopen/vi_32/K4nAxc5KlpWYt3TdcqgIBsnvowtNjEp5EsINqSGdTDoSckyp5Lx1wVpfL8XrnDaGpmoFV3waicvPeeWq1HRZTYg/0
",
            "birthday": "0000-00-00",
            "user_number": 31895292
        },
        {
            "id": "155719640",
            "uid": "5195675",
            "create_time": "1536845266",
            "uc_id": "25195675",
            "nickname": "DYP",
            "avatar": "
http://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJWcdv6fbicJmFibXV659icqlGribpOpnR21DiaBysDs3XezePT3vpScoexQDz1z3LWT2U0SXicic99s3wpg/0
",
            "birthday": "0000-00-00",
            "user_number": 25429483
        },
        {
            "id": "155717324",
            "uid": "18444544",
            "create_time": "1536844958",
            "uc_id": "18444544",
            "nickname": "小趣友_i8y3oj",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "birthday": "0000-00-00",
            "user_number": 18678455
        },
        {
            "id": "155714350",
            "uid": "1288973",
            "create_time": "1536844613",
            "uc_id": "11452200",
            "nickname": "舟亢Gorden",
            "avatar": "
https://img.xxx.cn/1534386901048.jpg
",
            "birthday": "2005-07-27",
            "user_number": 11676121
        },
        {
            "id": "155713233",
            "uid": "2687622",
            "create_time": "1536844480",
            "uc_id": "22687622",
            "nickname": "绝地求生MVP∑M416库里(互粉)",
            "avatar": "
https://img.xxx.cn/2018-09-05/5b8f122649b69_thumb.jpg
",
            "birthday": "2006-08-29",
            "user_number": 22911628
        },
        {
            "id": "155710145",
            "uid": "5800893",
            "create_time": "1536844142",
            "uc_id": "25800893",
            "nickname": "小趣友_v84z6o",
            "avatar": "
https://img.xxx.cn/2018-07-31/5b60365c98a79.jpg
",
            "birthday": "0000-00-00",
            "user_number": 26034810
        }
    ]
}
后来去试了下:
修改start参数,返回结果没变化
-》没法通过start+rows,返回我们希望的之后每页的数据
6 course详情-》点赞榜
1
https://childapi.xxx.com/StudyShow/course_show?sign=da0a90e3c7ee2f7656cbae6575c3521d×tamp=1536895345&uid=0&auth_token=0&course_id=59901&start=0&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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "155592558",
            "comments": "5",
            "supports": "52",
            "views": "45",
            "share_views": "0",
            "uid": "34501614",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-12 22:00",
            "nickname": "꧁万子晴~倾妤꧂赞置顶作回樱桃+10关",
            "avatar": "
https://img.xxx.cn/2018-07-20/5b517be47aeef.jpg
",
            "school": "1037001",
            "area": "3302",
            "birthday": "2008-11-18",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "152303531",
            "comments": "9",
            "supports": "31",
            "views": "385",
            "share_views": "0",
            "uid": "3212047",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-21 22:01",
            "nickname": "你的小汤圆",
            "avatar": "
https://img.xxx.cn/2018-08-02/5b62fbb42919a_thumb.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153153023",
            "comments": "2",
            "supports": "22",
            "views": "94",
            "share_views": "0",
            "uid": "92862",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-26 22:29",
            "nickname": "sam",
            "avatar": "
https://img.xxx.cn/2015-09-17/55fae0e75866e.jpg
",
            "school": "1232618",
            "area": "4503",
            "birthday": "2009-08-30",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "xxx",
            "comments": "0",
            "supports": "18",
            "views": "4",
            "share_views": "0",
            "uid": "2784893",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-11 22:03",
            "nickname": "蕤梣媏\\溜了溜了",
            "avatar": "
https://img.xxx.cn/2017-05-24/592593c464917.jpg
",
            "school": "1023323",
            "area": "1100",
            "birthday": "2007-03-10",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152104840",
            "comments": "2",
            "supports": "12",
            "views": "122",
            "share_views": "0",
            "uid": "2750266",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 20:58",
            "nickname": "昔.凌暂退勿撤",
            "avatar": "
https://img.xxx.cn/avatar_2018-09-13_1536828059_22750266.jpeg
",
            "school": "1043084",
            "area": "3205",
            "birthday": "2008-11-03",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "154525258",
            "comments": "0",
            "supports": "6",
            "views": "119",
            "share_views": "0",
            "uid": "37535080",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-05 19:41",
            "nickname": "MYN",
            "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKLiaAu7KfgBkXibIwoWvbbGdYj3E8S8nwr2Qruy2qpLMDzoIttN8OydQpDm4zUDWMuPjZS5kyf1npA/132
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153896831",
            "comments": "2",
            "supports": "6",
            "views": "28",
            "share_views": "0",
            "uid": "37442995",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-31 15:39",
            "nickname": "feen小号",
            "avatar": "
https://img.xxx.cn/2018-08-31/5b88efc262150.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153380197",
            "comments": "0",
            "supports": "4",
            "views": "4",
            "share_views": "0",
            "uid": "1570229",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-28 12:23",
            "nickname": "白芷",
            "avatar": "
https://img.xxx.cn/2018-08-29/5b861e2617749.jpg
",
            "school": "1422121",
            "area": "3309",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155615747",
            "comments": "0",
            "supports": "3",
            "views": "0",
            "share_views": "0",
            "uid": "34333920",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-13 11:32",
            "nickname": "wendy",
            "avatar": "
https://img.xxx.cn/2018-07-09/5b4329f2582b9_thumb.jpg
",
            "school": "1331634",
            "area": "4403",
            "birthday": "2011-11-02",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154734284",
            "comments": "1",
            "supports": "3",
            "views": "12",
            "share_views": "0",
            "uid": "37668630",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-07 13:51",
            "nickname": "一瓜一关,",
            "avatar": "
https://img.xxx.cn/2018-09-07/5b9208a6d6c94.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154661418",
            "comments": "0",
            "supports": "3",
            "views": "2",
            "share_views": "0",
            "uid": "2958376",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-06 20:15",
            "nickname": "朱妞妞",
            "avatar": "
https://img.xxx.cn/2016-12-15/585276b727673_thumb.jpg
",
            "school": "1222101",
            "area": "4403",
            "birthday": "2010-02-15",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "154560299",
            "comments": "2",
            "supports": "3",
            "views": "12",
            "share_views": "0",
            "uid": "1850457",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-05 20:59",
            "nickname": "飞尧",
            "avatar": "
https://img.xxx.cn/2017-10-02/59d23f8b855e9.jpg
",
            "school": "1168297",
            "area": "3205",
            "birthday": "2008-08-08",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154261374",
            "comments": "0",
            "supports": "3",
            "views": "2",
            "share_views": "0",
            "uid": "1663347",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-03 17:27",
            "nickname": "๛ก阿白_陌倾靖.浪?收徒收徒.要基友",
            "avatar": "
https://img.xxx.cn/2018-07-04/5b3cdb9ec0dae.jpg
",
            "school": "1448993",
            "area": "11",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152139721",
            "comments": "0",
            "supports": "3",
            "views": "43",
            "share_views": "0",
            "uid": "4551538",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 23:26",
            "nickname": "彭帅杰",
            "avatar": "
https://img.xxx.cn/2017-11-05/59fede476109f_thumb.jpg
",
            "school": "1028986",
            "area": "2108",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152101975",
            "comments": "0",
            "supports": "3",
            "views": "8",
            "share_views": "0",
            "uid": "3201734",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 20:49",
            "nickname": "夕晗ブ",
            "avatar": "
https://img.xxx.cn/2018-03-04/5a9b69abc54ba.jpg
",
            "school": "1292615",
            "area": "3205",
            "birthday": "2006-05-11",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155472832",
            "comments": "0",
            "supports": "2",
            "views": "15",
            "share_views": "0",
            "uid": "37548933",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-12 12:26",
            "nickname": "Lydia",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": "0",
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        }
    ]
}
去试了试:
修改start参数,比如1,2,找到119
都是可以返回结果的,直到:
1
start=120&rows=20
没有更多:
1
2
3
4
5
{
    "status": 1,
    "msg": "没有更多了!",
    "data": []
}
-》疑惑:
此处 已配音的小伙伴 后面显示总数有 259 名会员已评分
-》以为总数应该是259个的
-》但是此处start最大只有119个
不一致,不匹配。
-》不过后续还是可以修改start,指定起始的具体位置
获得批量的获取多页的效果
比如:
start=0 -》 返回往往不是20个,比如是18个
start=20 或 上面的 0+18 +再下一个1=19 返回 16个
start=40 或  16+20=36
之类的
后续研究其他的course id=46353
7 course详情 -》播放榜
1
https://childapi.xxx.com/StudyShow/viewTop?sign=4ccb35d6f3b4cfecc81c9b02462c5604×tamp=1536895896&uid=0&auth_token=0&course_id=59901&start=0&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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "152303531",
            "uid": "3212047",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-21 22:01",
            "comments": "9",
            "supports": "31",
            "views": "385",
            "nickname": "你的小汤圆",
            "avatar": "
https://img.xxx.cn/2018-08-02/5b62fbb42919a_thumb.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152104840",
            "uid": "2750266",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 20:58",
            "comments": "2",
            "supports": "12",
            "views": "122",
            "nickname": "昔.凌暂退勿撤",
            "avatar": "
https://img.xxx.cn/avatar_2018-09-13_1536828059_22750266.jpeg
",
            "school": "1043084",
            "area": "3205",
            "birthday": "2008-11-03",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "154525258",
            "uid": "37535080",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-05 19:41",
            "comments": "0",
            "supports": "6",
            "views": "119",
            "nickname": "MYN",
            "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKLiaAu7KfgBkXibIwoWvbbGdYj3E8S8nwr2Qruy2qpLMDzoIttN8OydQpDm4zUDWMuPjZS5kyf1npA/132
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153153023",
            "uid": "92862",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-26 22:29",
            "comments": "2",
            "supports": "22",
            "views": "94",
            "nickname": "sam",
            "avatar": "
https://img.xxx.cn/2015-09-17/55fae0e75866e.jpg
",
            "school": "1232618",
            "area": "4503",
            "birthday": "2009-08-30",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "155592558",
            "uid": "34501614",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-12 22:00",
            "comments": "5",
            "supports": "52",
            "views": "45",
            "nickname": "꧁万子晴~倾妤꧂赞置顶作回樱桃+10关",
            "avatar": "
https://img.xxx.cn/2018-07-20/5b517be47aeef.jpg
",
            "school": "1037001",
            "area": "3302",
            "birthday": "2008-11-18",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "152139721",
            "uid": "4551538",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 23:26",
            "comments": "0",
            "supports": "3",
            "views": "43",
            "nickname": "彭帅杰",
            "avatar": "
https://img.xxx.cn/2017-11-05/59fede476109f_thumb.jpg
",
            "school": "1028986",
            "area": "2108",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153896831",
            "uid": "37442995",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-31 15:39",
            "comments": "2",
            "supports": "6",
            "views": "28",
            "nickname": "feen小号",
            "avatar": "
https://img.xxx.cn/2018-08-31/5b88efc262150.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154309739",
            "uid": "37530279",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-03 20:34",
            "comments": "0",
            "supports": "0",
            "views": "23",
            "nickname": "小趣友_ep8gbv",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152140330",
            "uid": "34197403",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-20 23:41",
            "comments": "0",
            "supports": "0",
            "views": "18",
            "nickname": "小趣友_8tepnz",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154715452",
            "uid": "31721236",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-06 23:16",
            "comments": "0",
            "supports": "0",
            "views": "16",
            "nickname": "诺实教育Lexi",
            "avatar": "
http://wx.qlogo.cn/mmopen/vi_32/CGPstrvAXkgVictojFibRsbzv6lCYCiblic5rpVaEuAbicXrWvfDXibIoca7qiaroFXdTReASzRwsO6UKQITH0YxQMlGQ/0
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155472832",
            "uid": "37548933",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-12 12:26",
            "comments": "0",
            "supports": "2",
            "views": "15",
            "nickname": "Lydia",
            "avatar": "
https://img.xxx.cn/avatar_default.png
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155614901",
            "uid": "37876672",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-13 08:20",
            "comments": "0",
            "supports": "1",
            "views": "12",
            "nickname": "ViVi-guo",
            "avatar": "
https://img.xxx.cn/2018-09-13/5b99addad2ac2.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154734284",
            "uid": "37668630",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-07 13:51",
            "comments": "1",
            "supports": "3",
            "views": "12",
            "nickname": "一瓜一关,",
            "avatar": "
https://img.xxx.cn/2018-09-07/5b9208a6d6c94.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154560299",
            "uid": "1850457",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-05 20:59",
            "comments": "2",
            "supports": "3",
            "views": "12",
            "nickname": "飞尧",
            "avatar": "
https://img.xxx.cn/2017-10-02/59d23f8b855e9.jpg
",
            "school": "1168297",
            "area": "3205",
            "birthday": "2008-08-08",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "152169962",
            "uid": "4503277",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-21 10:11",
            "comments": "0",
            "supports": "1",
            "views": "12",
            "nickname": "天蝎座腹黑少女",
            "avatar": "
https://img.xxx.cn/2017-07-14/59682e65716f9.jpg
",
            "school": "1019888",
            "area": "4204",
            "birthday": "2006-11-21",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "153566807",
            "uid": "31398771",
            "course_id": "59901",
            "album_id": "0",
            "create_time": "2018-08-29 14:36",
            "comments": "0",
            "supports": "0",
            "views": "11",
            "nickname": "怡宝",
            "avatar": "
https://img.xxx.cn/2017-12-17/5a36725cecee2.jpg
",
            "school": "1450820",
            "area": "3100",
            "birthday": "2010-09-10",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "154547802",
            "uid": "37518785",
            "course_id": "59901",
            "album_id": "3369",
            "create_time": "2018-09-05 20:34",
            "comments": "0",
            "supports": "1",
            "views": "10",
            "nickname": "美霖",
            "avatar": "
http://thirdwx.qlogo.cn/mmopen/vi_32/BeGIP6S39anMzVlkRyabDqIZmtiaJnkxuCp8VURez1qcmicOFLicoy1T5OianqDaC56Ze8I3G3kCSgCqQGaOX1HpjQ/132
",
            "school": "0",
            "area": "0",
            "birthday": "0000-00-00",
            "course_title": "你需要为他们做个榜样",
            "pic": "13035238",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        }
    ]
}
此处研究发现:
也是可以start=xxx,去指定起始位置获取rows条数据的
  • 但是指定rows=20,返回往往是不够的,比如18
最大的值只有200个
否则就报错:
1
2
3
4
5
{
    "status": 1,
    "msg": "没有更多了!/alidata/www/peiyin/trunk/childrenlar/app/Services/StudyShowService.php586",
    "data": []
}
搜:
alidata peiyin childrenlar StudyShowService
alidata  peiyin
bus.myzke002.com/wechat.php?siteid=75&m=money-item&id=30748&mid=75
“Notice: Undefined index: begin_time in /alidata/www/v2/bus.myzke.com/data/tpl_cache/template_v2_money-item.php on line 88 2018-09-14 13:32 Notice: Undefined index: author in /alidata/www/v2/bus.myzke.com/data/tpl_cache/template_v2_money-item.php on line 88 转客平台”
alidata
https://www.alidata.pt
Alidata: Overview | LinkedIn
freemansu/alidata
阿里巴巴-天猫大数据竞赛第一赛季
adrienrenaud/alidata
ali的data
继续去研究:
用什么方式去能爬取到全部的视频

8 底部Tab 排行榜-》学霸
1
https://childapi.xxx.com/top/sign_top?sign=17c411d4c4d011c614b7cef633fc68ce×tamp=1536909875&uid=0&auth_token=0&area_id=0&start=40&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
{
    "status": 1,
    "msg": "",
    "data": {
        "top_info": {
            "ranking": "0",
            "tips": "你还未上榜,坚持配音打卡哦",
            "ranking_value": "0"
        },
        "lists": [
            {
                "uid": "1716080",
                "day": "792",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "努力的林子程",
                "avatar": "
https://img.xxx.cn/2016-11-22/58346661d577d.jpg
"
            },
            {
                "uid": "1674836",
                "day": "791",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "沙煜杰",
                "avatar": "
https://img.xxx.cn/2018-05-22/5b03d6caba4da.jpg
"
            },
            {
                "uid": "1715450",
                "day": "789",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "訾卓远",
                "avatar": "
https://img.xxx.cn/2017-12-15/5a333f434ff51_thumb.jpg
"
            },
            {
                "uid": "1330471",
                "day": "782",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "Cindy",
                "avatar": "
https://img.xxx.cn/2017-11-05/59ff3340d6bbb.jpg
"
            },
            {
                "uid": "635778",
                "day": "781",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "Winnie",
                "avatar": "
https://img.xxx.cn/2018-05-14/5af8b42d9e453_thumb.jpg
"
            },
            {
                "uid": "419120",
                "day": "778",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "Jessie",
                "avatar": "
https://img.xxx.cn/2018-05-27/5b0a7ccd2f27a.jpg
"
            },
            {
                "uid": "1308419",
                "day": "775",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "小趣友_wi068h",
                "avatar": "
https://img.xxx.cn/2018-02-04/5a76e396afdac.jpg
"
            },
            {
                "uid": "1848784",
                "day": "769",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "奥 ♬",
                "avatar": "
https://img.xxx.cn/2017-09-14/59ba7b88d6d63.jpg
"
            },
            {
                "uid": "492399",
                "day": "766",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "Jarrett",
                "avatar": "
https://img.xxx.cn/2016-09-01/57c843f2c7285.jpg
"
            },
            {
                "uid": "1740203",
                "day": "766",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "廖智敏",
                "avatar": "
https://img.xxx.cn/2018-02-27/5a955e1231c06.jpg
"
            },
            {
                "uid": "1680970",
                "day": "764",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "姜懿航",
                "avatar": "
https://img.xxx.cn/2017-01-29/588df478893b6.jpg
"
            },
            {
                "uid": "531446",
                "day": "762",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "幻想撕裂红颜一席微凉",
                "avatar": "
https://img.xxx.cn/2018-05-05/5aecfe7e40021.jpg
"
            },
            {
                "uid": "372527",
                "day": "757",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "Tina",
                "avatar": "
https://img.xxx.cn/2016-09-08/57d12d6d547c8.jpg
"
            },
            {
                "uid": "1784631",
                "day": "757",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "昊王",
                "avatar": "
https://img.xxx.cn/2018-08-16/5b74cf552957e.jpg
"
            },
            {
                "uid": "1882027",
                "day": "755",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "⚜G.A.W.⚜(看置顶配音)",
                "avatar": "
https://img.xxx.cn/avatar_2018-04-30_1525084444_21882027.jpeg
"
            },
            {
                "uid": "1659594",
                "day": "751",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "子安~",
                "avatar": "
https://img.xxx.cn/2018-08-29/5b86a64617e72.jpg
"
            },
            {
                "uid": "1574558",
                "day": "750",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "Simon(王凯伦)",
                "avatar": "
https://img.xxx.cn/2016-08-23/57bb904a0cd8f.jpg
"
            },
            {
                "uid": "716887",
                "day": "749",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "柠檬酸半心",
                "avatar": "
https://img.xxx.cn/2018-04-13/5ad0893e9d833.jpg
"
            },
            {
                "uid": "1936467",
                "day": "749",
                "dav": "",
                "dv_type": "0",
                "is_vip": "1",
                "nickname": "Jason张",
                "avatar": "
https://img.xxx.cn/2017-03-28/58da475e46202.jpg
"
            },
            {
                "uid": "1993599",
                "day": "742",
                "dav": "",
                "dv_type": "0",
                "is_vip": "0",
                "nickname": "秦宇涵",
                "avatar": "
https://img.xxx.cn/2018-07-12/5b46c5ce5b7ab.jpg
"
            }
        ]
    }
}
看看start的分页数据获取:
start最大是200
-》感觉是限制了此api获取的用户数,最大只能是200个
-》理论上系统中肯定不止200个用户
9 底部Tab 排行榜-》人气
1
https://childapi.xxx.com/top/shownews_top_redis?sign=f00a8402d9ea4f26a0eee153aba71fb3×tamp=1536910053&uid=0&time_type=1&area_id=0&ranking_type=0&start=40&auth_token=0&rows=20
必填参数:
  • start=0
  • rows=20
  • time_type: 1
返回:
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
{
    "status": 1,
    "msg": "",
    "data": [
        {
            "id": "155732810",
            "show_id": "155732810",
            "uid": "33119767",
            "course_id": "43716",
            "album_id": "2445",
            "create_time": "2018-09-13 22:00",
            "views": "390",
            "supports": 321,
            "rank": 0,
            "is_support": 0,
            "nickname": "酒幼,没1过这号",
            "avatar": "
https://img.xxx.cn/dubkid_33119767_20180913052543_photoalbum_type_corp
",
            "school": "1476656",
            "area": "1100",
            "birthday": "2018-01-22",
            "course_title": "为什么我不能出去玩",
            "pic": "5749862",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732604",
            "show_id": "155732604",
            "uid": "2706274",
            "course_id": "35642",
            "album_id": "2019",
            "create_time": "2018-09-13 22:00",
            "views": "399",
            "supports": 280,
            "rank": 0,
            "is_support": 0,
            "nickname": "叶青.前三",
            "avatar": "
https://img.xxx.cn/dubkid_2706274_20180912105535_user_avatar_type_corp
",
            "school": "1476713",
            "area": "11",
            "birthday": "2000-11-08",
            "course_title": "小樱成为魔法使",
            "pic": "2570986",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732711",
            "show_id": "155732711",
            "uid": "32044708",
            "course_id": "60970",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "187",
            "supports": 253,
            "rank": 0,
            "is_support": 0,
            "nickname": "SKY.1赞2关",
            "avatar": "
https://img.xxx.cn/dubkid_32044708_20180913021510_user_avatar_type_corp
",
            "school": "0",
            "area": "0",
            "birthday": "2005-12-31",
            "course_title": "天籁之声《I believe in You》",
            "pic": "13182446",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732582",
            "show_id": "155732582",
            "uid": "32972115",
            "course_id": "60692",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "222",
            "supports": 179,
            "rank": 0,
            "is_support": 0,
            "nickname": "yi.点赞送5粉评论说",
            "avatar": "
https://img.xxx.cn/2018-08-26/5b821bb1223d4.jpg
",
            "school": "1268804",
            "area": "1108",
            "birthday": "2018-03-29",
            "course_title": "不是终结而是开始",
            "pic": "13100047",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732640",
            "show_id": "155732640",
            "uid": "33990469",
            "course_id": "53538",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "97",
            "supports": 154,
            "rank": 0,
            "is_support": 0,
            "nickname": "韩妮/前200赞送西瓜+1粉",
            "avatar": "
https://img.xxx.cn/2018-09-13/5b9a37136f752.jpg
",
            "school": "0",
            "area": "0",
            "birthday": "2006-09-13",
            "course_title": "Pizza - 于孝恩",
            "pic": "10935326",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 1,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732608",
            "show_id": "155732608",
            "uid": "2646555",
            "course_id": "31316",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "123",
            "supports": 121,
            "rank": 0,
            "is_support": 0,
            "nickname": "雨樱.一赞两关.怪怪的",
            "avatar": "
https://img.xxx.cn/dubkid_2646555_20180912053455_user_avatar_type_corp
",
            "school": "1477790",
            "area": "11",
            "birthday": "2007-10-01",
            "course_title": "Beautiful In White下",
            "pic": "1744401",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "155732595",
            "show_id": "155732595",
            "uid": "2100683",
            "course_id": "47414",
            "album_id": "2764",
            "create_time": "2018-09-13 22:00",
            "views": "76",
            "supports": 103,
            "rank": 0,
            "is_support": 0,
            "nickname": "七夏*今生日,4-100赞回瓜",
            "avatar": "
https://img.xxx.cn/2018-09-01/5b8a60d144bc4_thumb.jpg
",
            "school": "1464475",
            "area": "4408",
            "birthday": "2007-09-13",
            "course_title": "你就羡慕我吧",
            "pic": "7673709",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "155732583",
            "show_id": "155732583",
            "uid": "5051920",
            "course_id": "33450",
            "album_id": "2055",
            "create_time": "2018-09-13 22:00",
            "views": "80",
            "supports": 98,
            "rank": 0,
            "is_support": 0,
            "nickname": "江甜.一赞一关or回瓜",
            "avatar": "
https://img.xxx.cn/avatar_2018-09-02_1535892134_18687492.jpeg
",
            "school": "1471775",
            "area": "4301",
            "birthday": "2018-04-06",
            "course_title": "有人要熊熊吗",
            "pic": "5035433",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 1,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732626",
            "show_id": "155732626",
            "uid": "564970",
            "course_id": "53538",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "57",
            "supports": 90,
            "rank": 0,
            "is_support": 0,
            "nickname": "1k_森女.删作",
            "avatar": "
https://img.xxx.cn/2018-09-08/5b93bfd053e37.jpg
",
            "school": "1464475",
            "area": "6101",
            "birthday": "2001-10-12",
            "course_title": "Pizza - 于孝恩",
            "pic": "10935326",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "1"
        },
        {
            "id": "155732593",
            "show_id": "155732593",
            "uid": "4663936",
            "course_id": "32538",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "76",
            "supports": 85,
            "rank": 0,
            "is_support": 0,
            "nickname": "沫兮.不靠福利靠实力",
            "avatar": "
https://img.xxx.cn/2018-09-02/5b8bbfbdb4299.jpg
",
            "school": "1476777",
            "area": "5120",
            "birthday": "2007-07-29",
            "course_title": "the show 上",
            "pic": "1845090",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732619",
            "show_id": "155732619",
            "uid": "4158422",
            "course_id": "36073",
            "album_id": "3236",
            "create_time": "2018-09-13 22:00",
            "views": "68",
            "supports": 81,
            "rank": 0,
            "is_support": 0,
            "nickname": "晴娜,前80赞给一关,诚信!小号互赞私",
            "avatar": "
https://img.xxx.cn/dubkid_4158422_20180912083909_user_avatar_type_corp
",
            "school": "1016403",
            "area": "6101",
            "birthday": "2018-03-13",
            "course_title": "知世的好办法",
            "pic": "6566910",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 1,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732617",
            "show_id": "155732617",
            "uid": "35797814",
            "course_id": "27999",
            "album_id": "1730",
            "create_time": "2018-09-13 22:00",
            "views": "40",
            "supports": 77,
            "rank": 0,
            "is_support": 0,
            "nickname": "今更点赞10关,诚!",
            "avatar": "
https://img.xxx.cn/dubkid_35797814_20180914125553_user_avatar_type_corp
",
            "school": "1302747",
            "area": "3401",
            "birthday": "2000-05-20",
            "course_title": "大千世界上",
            "pic": "1418586",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732587",
            "show_id": "155732587",
            "uid": "86424",
            "course_id": "29413",
            "album_id": "1613",
            "create_time": "2018-09-13 22:00",
            "views": "54",
            "supports": 72,
            "rank": 0,
            "is_support": 0,
            "nickname": "淇赞送蓝莓和5关注_前十",
            "avatar": "
https://img.xxx.cn/avatar_2018-09-06_1536227851_20086424.jpeg
",
            "school": "1018309",
            "area": "1100",
            "birthday": "2006-05-07",
            "course_title": "天才眼镜狗的自我介绍",
            "pic": "1505087",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732691",
            "show_id": "155732691",
            "uid": "32535501",
            "course_id": "49058",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "38",
            "supports": 61,
            "rank": 0,
            "is_support": 0,
            "nickname": "雨点ฅ差10赞超过前一名.凉哪来10赞",
            "avatar": "
https://img.xxx.cn/2018-09-12/5b990d6353f21.jpg
",
            "school": "",
            "area": "11",
            "birthday": "2007-07-25",
            "course_title": "Oreo",
            "pic": "8684278",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732712",
            "show_id": "155732712",
            "uid": "2024522",
            "course_id": "59125",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "44",
            "supports": 60,
            "rank": 0,
            "is_support": 0,
            "nickname": "ID:22248321",
            "avatar": "
https://img.xxx.cn/2017-12-23/5a3de6942a9ac.jpg
",
            "school": "1017553",
            "area": "6101",
            "birthday": "1900-12-12",
            "course_title": "治愈系英文--更值得的",
            "pic": "12691396",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732660",
            "show_id": "155732660",
            "uid": "516938",
            "course_id": "61082",
            "album_id": "0",
            "create_time": "2018-09-13 22:00",
            "views": "48",
            "supports": 57,
            "rank": 0,
            "is_support": 0,
            "nickname": "睿思",
            "avatar": "
https://img.xxx.cn/2016-03-27/56f7c44a231cb.jpg
",
            "school": "1050124",
            "area": "1307",
            "birthday": "2007-12-31",
            "course_title": "用你吃奶的力气舔他",
            "pic": "13217787",
            "permit_client": "2,4,1,3",
            "permit_show": "1",
            "is_crown": 1,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732579",
            "show_id": "155732579",
            "uid": "4060345",
            "course_id": "22687",
            "album_id": "2657",
            "create_time": "2018-09-13 22:00",
            "views": "34",
            "supports": 56,
            "rank": 0,
            "is_support": 0,
            "nickname": "一赞一关评论/赞抽520钻",
            "avatar": "
https://img.xxx.cn/2018-08-17/5b76c0760e7e9_thumb.jpg
",
            "school": "1083201",
            "area": "3205",
            "birthday": "1960-04-16",
            "course_title": "免费的熊要吗",
            "pic": "1112749",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155733708",
            "show_id": "155733708",
            "uid": "1494795",
            "course_id": "46659",
            "album_id": "2687",
            "create_time": "2018-09-13 22:03",
            "views": "24",
            "supports": 56,
            "rank": 0,
            "is_support": 0,
            "nickname": "苏甜。点赞回瓜。",
            "avatar": "
https://img.xxx.cn/2018-08-29/5b862df0384e7.jpg
",
            "school": "1476406",
            "area": "1503",
            "birthday": "2003-03-07",
            "course_title": "我是不早熟的艾玛君",
            "pic": "7079891",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732692",
            "show_id": "155732692",
            "uid": "34507691",
            "course_id": "39221",
            "album_id": "2273",
            "create_time": "2018-09-13 22:00",
            "views": "40",
            "supports": 53,
            "rank": 0,
            "is_support": 0,
            "nickname": "渡_A.X~夏沫゛赞一回2/安",
            "avatar": "
https://img.xxx.cn/1535358122329.jpg
",
            "school": "1032925",
            "area": "3408",
            "birthday": "2007-12-29",
            "course_title": "星座单词1",
            "pic": "4391013",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        },
        {
            "id": "155732584",
            "show_id": "155732584",
            "uid": "4463634",
            "course_id": "47800",
            "album_id": "2802",
            "create_time": "2018-09-13 22:00",
            "views": "36",
            "supports": 51,
            "rank": 0,
            "is_support": 0,
            "nickname": "渡_夏芷晴-秒赞支持→",
            "avatar": "
https://img.xxx.cn/dubkid_4463634_20180912074013_photoalbum_type_corp
",
            "school": "1152",
            "area": "1100",
            "birthday": "1999-09-21",
            "course_title": "王者荣耀外服之甄姬",
            "pic": "7921122",
            "permit_client": "1,2,3,4",
            "permit_show": "1",
            "is_crown": 0,
            "school_str": "",
            "dav": "",
            "dv_type": "0",
            "is_vip": "0"
        }
    ]
}
也是试试start获取分页:
也是最多200个用户,多了就返回空列表了。
10 排行榜-》学校
1
https://childapi.xxx.com/top/school_top?sign=f1283f3d7be396f8d9edeeb8a2ea6e0e×tamp=1536912490&uid=0&time_type=1&auth_token=0&start=20&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
{
    "status": 1,
    "msg": "",
    "data": {
        "top_info": null,
        "lists": [
            {
                "school_id": 1449063,
                "school_name": "中宁县第一小学",
                "shows": 88
            },
            {
                "school_id": 1268804,
                "school_name": "重点中学",
                "shows": 79
            },
            {
                "school_id": 1086378,
                "school_name": "新亭小学",
                "shows": 41
            },
            {
                "school_id": 1150673,
                "school_name": "离石市第五小学",
                "shows": 34
            },
            {
                "school_id": 1018230,
                "school_name": "吉林市",
                "shows": 33
            },
            {
                "school_id": 1268098,
                "school_name": "中卫市第一小学",
                "shows": 32
            },
            {
                "school_id": 1263108,
                "school_name": "安铁关庙希望小学",
                "shows": 31
            },
            {
                "school_id": 1108805,
                "school_name": "家乐园小学",
                "shows": 30
            },
            {
                "school_id": 1016544,
                "school_name": "培新小学",
                "shows": 30
            },
            {
                "school_id": 1016437,
                "school_name": "实验小学",
                "shows": 30
            },
            {
                "school_id": 1428702,
                "school_name": "丰台第五小学本部",
                "shows": 27
            },
            {
                "school_id": 1031973,
                "school_name": "琳琅教育",
                "shows": 27
            },
            {
                "school_id": 1016707,
                "school_name": "新建路小学",
                "shows": 27
            },
            {
                "school_id": 1429868,
                "school_name": "无锡协和双语国际小学",
                "shows": 26
            },
            {
                "school_id": 1445209,
                "school_name": "路南区第二实验小学",
                "shows": 25
            },
            {
                "school_id": 1431099,
                "school_name": "北京中杉小学",
                "shows": 24
            },
            {
                "school_id": 1268805,
                "school_name": "金钥匙学校",
                "shows": 23
            },
            {
                "school_id": 1036286,
                "school_name": "博爱小学",
                "shows": 21
            },
            {
                "school_id": 1027290,
                "school_name": "艾瑞德国际学校",
                "shows": 21
            },
            {
                "school_id": 1268711,
                "school_name": "北京汇文实验中学",
                "shows": 20
            }
        ]
    }
}
start获取分页:
也是最多200个

【整理】lumen简介

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

发表我的评论
取消评论

表情

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

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
269 queries in 0.501 seconds, using 22.85MB memory