-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathonMentionsResponse.json
1126 lines (1126 loc) · 39.1 KB
/
onMentionsResponse.json
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
999
1000
{
"message_list": [
{
"liked": false,
"id": "296609580",
"time": 1705810979,
"score": 296609580,
"track_type": "27",
"comment_info": {
"like_count": 0,
"id": "65ac9c20000000000201078a",
"content": "最新的娃娃",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false
},
"time_flag": 0,
"type": "comment/item",
"title": "评论了你的笔记",
"user_info": {
"userid": "5cae0fd90000000011019b79",
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "你的好友"
},
"item_info": {
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
},
"status": 0,
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280,
"height": 1707
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single"
}
},
{
"liked": false,
"time_flag": 0,
"id": "296609411",
"type": "comment/item",
"title": "评论了你的笔记",
"score": 296609411,
"user_info": {
"red_official_verify_type": 0,
"indicator": "你的好友",
"userid": "5cae0fd90000000011019b79",
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg"
},
"time": 1705810902,
"item_info": {
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"image_info": {
"height": 1707,
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0
},
"comment_info": {
"liked": false,
"like_count": 0,
"id": "65ac9bd4000000000201265b",
"content": "你好娃娃",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0
},
"track_type": "27"
},
{
"score": 296609349,
"user_info": {
"userid": "5cae0fd90000000011019b79",
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "你的好友"
},
"item_info": {
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280,
"height": 1707
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single"
},
"comment_info": {
"id": "65ac9bb50000000001030596",
"content": "你好呀",
"illegal_info": {
"desc": "",
"illegal_status": "NORMAL",
"status": 0
},
"status": 0,
"liked": false,
"like_count": 0
},
"track_type": "27",
"liked": false,
"id": "296609349",
"title": "评论了你的笔记",
"time_flag": 0,
"type": "comment/item",
"time": 1705810872
},
{
"score": 296608422,
"user_info": {
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "你的好友",
"userid": "5cae0fd90000000011019b79"
},
"item_info": {
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280,
"height": 1707
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg"
},
"comment_info": {
"liked": false,
"like_count": 0,
"id": "65ac9a420000000001032050",
"content": "笑死哈哈哈哈",
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
},
"status": 0
},
"track_type": "27",
"liked": false,
"time_flag": 0,
"id": "296608422",
"type": "comment/item",
"title": "评论了你的笔记",
"time": 1705810500
},
{
"title": "评论了你的笔记",
"score": 295975437,
"track_type": "27",
"time_flag": 0,
"type": "comment/item",
"time": 1705473493,
"user_info": {
"userid": "5cae0fd90000000011019b79",
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "你的好友"
},
"item_info": {
"image": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.656d87f400000000090226e9?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
},
"status": 0,
"type": "note_info",
"id": "656d87f400000000090226e9"
},
"comment_info": {
"id": "65a775d20000000001024627",
"content": "这个好喝",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0
},
"liked": false,
"id": "295975437"
},
{
"score": 295975421,
"item_info": {
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
},
"status": 0,
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280,
"height": 1707
}
},
"comment_info": {
"like_count": 0,
"id": "65a775c80000000002025ba8",
"content": "好评",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false
},
"liked": false,
"id": "295975421",
"title": "评论了你的笔记",
"user_info": {
"nickname": "程序员老吴",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/5cae0fd90000000011019b79.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "你的好友",
"userid": "5cae0fd90000000011019b79"
},
"track_type": "27",
"time_flag": 0,
"type": "comment/item",
"time": 1705473482
},
{
"comment_info": {
"id": "657c5574000000003b00a713",
"content": "蜡像馆需要预约吗",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 1
},
"track_type": "27",
"time_flag": 0,
"id": "291402623",
"time": 1702647159,
"score": 291402623,
"item_info": {
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
},
"link": "xhsdiscover://item/discovery.655c265d000000003202f2f6?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "655c265d000000003202f2f6",
"image": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"width": 1920,
"height": 2560
}
},
"type": "comment/item",
"title": "评论了你的笔记",
"user_info": {
"userid": "5e6b68250000000001007152",
"nickname": "治愈漫剪🌿",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/617029f5c13a59b787c75d69.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"liked": false
},
{
"id": "290386308",
"type": "comment/item",
"title": "评论了你的笔记",
"time": 1702106638,
"track_type": "27",
"score": 290386308,
"user_info": {
"userid": "5b728364fe3af0000181c498",
"nickname": "iiiii",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1000g2jo2nv7fk9qk60004ae5d21m9h4o46vmio0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"item_info": {
"id": "65600511000000000f024f59",
"image": "http://ci.xiaohongshu.com/1040g00830rregr0u2i505oeuc0d417n9oaidpg8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830rregr0u2i505oeuc0d417n9oaidpg8?imageView2/2/w/1080/format/jpg",
"width": 1920,
"height": 2560
},
"illegal_info": {
"desc": "",
"illegal_status": "NORMAL",
"status": 0
},
"link": "xhsdiscover://item/discovery.65600511000000000f024f59?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info"
},
"comment_info": {
"content": "图二上面的照片是在哪个位置呀[哇R][哇R][哇R][哇R]",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0,
"id": "6574160a000000000700a2c3"
},
"liked": false,
"time_flag": 0
},
{
"id": "290105009",
"score": 290105009,
"user_info": {
"nickname": "魔法阿怡🌟",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30oe9dcm42e005ngh3plg8q3p0s7hkno?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "5e111e6b0000000001006879"
},
"item_info": {
"link": "xhsdiscover://item/discovery.655c265d000000003202f2f6?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "655c265d000000003202f2f6",
"image": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"width": 1920,
"height": 2560
},
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
}
},
"comment_info": {
"id": "6571b80d000000003b012fae",
"content": "亲亲带小朋友推荐去哪个广场吖[笑哭R]",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0
},
"track_type": "27",
"liked": false,
"type": "comment/item",
"title": "评论了你的笔记",
"time": 1701951503,
"time_flag": 0
},
{
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/645b7e17e29f7d0acadad89f.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "6566f6df000000001c01903a",
"nickname": "阿白"
},
"item_info": {
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg",
"width": 1280,
"height": 1707
},
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
},
"link": "xhsdiscover://item/discovery.6566f3de0000000033008704?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记"
},
"status": 0,
"type": "note_info",
"id": "6566f3de0000000033008704",
"image": "http://ci.xiaohongshu.com/1040g00830s27gcrjim605oeuc0d417n9o3d83co?imageView2/2/w/1080/format/jpg"
},
"time_flag": 0,
"type": "comment/item",
"time": 1701886563,
"score": 290025743,
"comment_info": {
"content": "不要学会做饭,会了之后顿顿指着你!",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 1,
"id": "6570ba610000000020024ed9"
},
"track_type": "27",
"liked": false,
"id": "290025743",
"title": "评论了你的笔记"
},
{
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30ql7ha7qgo6g5o4qb2n08nrpuri769o?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "609a58ae0000000001005f79",
"nickname": "浅笑倾心"
},
"comment_info": {
"like_count": 0,
"target_comment": {
"like_count": 0,
"id": "656d88d7000000001601d722",
"content": " @浅笑倾心 ",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/638719758909ddd82ebd9058.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "5aac4cef11be101532be9c64",
"nickname": "第三次冲击"
},
"status": 0,
"liked": false
},
"id": "656e8289000000003800ea7b",
"content": "茄汁胡辣汤感觉不错[色色R]",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false
},
"liked": false,
"time_flag": 0,
"id": "289817004",
"type": "comment/comment",
"title": "回复了第三次冲击的评论",
"track_type": "28",
"time": 1701741195,
"score": 289817004,
"item_info": {
"status": 0,
"type": "note_info",
"id": "656d87f400000000090226e9",
"image": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.656d87f400000000090226e9?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
}
}
},
{
"liked": false,
"time_flag": 0,
"id": "289747610",
"score": 289747610,
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/638719758909ddd82ebd9058.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "5aac4cef11be101532be9c64",
"nickname": "第三次冲击"
},
"item_info": {
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "656d87f400000000090226e9",
"image": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830s8l2o9b2m605oeuc0d417n9bnvcrl8?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.656d87f400000000090226e9?type=normal&sourceID=notifications&feedType=single"
},
"comment_info": {
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0,
"id": "656d88d7000000001601d722",
"content": " @浅笑倾心 "
},
"type": "comment/item",
"title": "评论了你的笔记",
"time": 1701677273,
"track_type": "27"
},
{
"time": 1701473967,
"score": 289450994,
"track_type": "27",
"liked": false,
"time_flag": 0,
"id": "289450994",
"type": "comment/item",
"title": "评论了你的笔记",
"user_info": {
"userid": "590c3f915e87e730b49c084b",
"nickname": "包包",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/62f8d38b53b17f1b9a23dc90.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"item_info": {
"status": 0,
"type": "note_info",
"id": "6569b4fa0000000006020a54",
"image": "http://ci.xiaohongshu.com/1040g2sg30s4tinanis6g5oeuc0d417n9h94l8j8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g2sg30s4tinanis6g5oeuc0d417n9h94l8j8?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6569b4fa0000000006020a54?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
}
},
"comment_info": {
"id": "656a6ead000000003800a3dc",
"content": "我昨天在腾元生煎排了五分钟 最后被我老公拉走了哈哈哈哈 对我一顿嘲笑哈哈哈",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0
}
},
{
"id": "289388292",
"type": "comment/item",
"title": "评论了你的笔记",
"score": 289388292,
"user_info": {
"userid": "61d9a6d5000000002102935e",
"nickname": "恩宁雪糕行",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/625a6363c1b26c633ef659c3.jpg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"track_type": "27",
"time": 1701427418,
"item_info": {
"link": "xhsdiscover://item/discovery.6569b4fa0000000006020a54?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"type": "note_info",
"id": "6569b4fa0000000006020a54",
"image": "http://ci.xiaohongshu.com/1040g2sg30s4tinanis6g5oeuc0d417n9h94l8j8?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g2sg30s4tinanis6g5oeuc0d417n9h94l8j8?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
}
},
"comment_info": {
"liked": false,
"like_count": 0,
"id": "6569b8d9000000003b00e232",
"content": "雪糕在这里[害羞R]",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0
},
"liked": false,
"time_flag": 0
},
{
"id": "289228218",
"title": "回复了我的评论",
"item_info": {
"image": "http://ci.xiaohongshu.com/1040g2sg30s35n6le2e005n693iulh5il9uebm88?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g2sg30s35n6le2e005n693iulh5il9uebm88?imageView2/2/w/1080/format/jpg",
"width": 1443,
"height": 600
},
"illegal_info": {
"desc": "该笔记已删除",
"illegal_status": "DELETE",
"status": 1
},
"link": "xhsdiscover://item/discovery.656742050000000038016af9?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"nickname": "其其澄",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30nd65cflmo5g5n693iulh5ilhha18tg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "5cc91cbd0000000016009655"
},
"status": 0,
"type": "note_info",
"id": "656742050000000038016af9"
},
"comment_info": {
"like_count": 0,
"target_comment": {
"like_count": 1,
"id": "656744620000000014014b30",
"content": "把下一步的内容都做到同一个组件里面,通过vif或者vshow动态显示,比如有一个变量step,step等于1的时候说明显示第一步的内容,点击下一步,step变成2,展示下一步的内容",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"status": 0,
"liked": false
},
"id": "6567eb7700000000110354b4",
"content": "弄了,但是有的内容被隐藏了[哭惹R]",
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
},
"status": 0,
"liked": false
},
"track_type": "26",
"time_flag": 0,
"type": "comment/comment",
"time": 1701309305,
"score": 289228218,
"user_info": {
"userid": "5cc91cbd0000000016009655",
"nickname": "其其澄",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30nd65cflmo5g5n693iulh5ilhha18tg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "作者"
},
"liked": false
},
{
"liked": false,
"type": "comment/comment",
"title": "回复了我的评论",
"time": 1701268169,
"score": 289191601,
"item_info": {
"link": "xhsdiscover://item/discovery.656742050000000038016af9?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30nd65cflmo5g5n693iulh5ilhha18tg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"userid": "5cc91cbd0000000016009655",
"nickname": "其其澄"
},
"status": 0,
"type": "note_info",
"id": "656742050000000038016af9",
"image": "http://ci.xiaohongshu.com/1040g2sg30s35n6le2e005n693iulh5il9uebm88?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g2sg30s35n6le2e005n693iulh5il9uebm88?imageView2/2/w/1080/format/jpg",
"width": 1443,
"height": 600
},
"illegal_info": {
"status": 1,
"desc": "该笔记已删除",
"illegal_status": "DELETE"
}
},
"track_type": "26",
"id": "289191601",
"user_info": {
"nickname": "其其澄",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30nd65cflmo5g5n693iulh5ilhha18tg?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "作者",
"userid": "5cc91cbd0000000016009655"
},
"comment_info": {
"status": 0,
"liked": false,
"like_count": 0,
"target_comment": {
"status": 0,
"liked": false,
"like_count": 1,
"id": "656744620000000014014b30",
"content": "把下一步的内容都做到同一个组件里面,通过vif或者vshow动态显示,比如有一个变量step,step等于1的时候说明显示第一步的内容,点击下一步,step变成2,展示下一步的内容",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
}
},
"id": "65674ac60000000010039b11",
"content": "好的,我明天试试哈[喝奶茶R]",
"illegal_info": {
"illegal_status": "NORMAL",
"status": 0,
"desc": ""
}
},
"time_flag": 0
},
{
"score": 289173929,
"item_info": {
"status": 0,
"type": "note_info",
"id": "655c265d000000003202f2f6",
"image": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g00830rnltgdk2g6g5oeuc0d417n93bpcj9o?imageView2/2/w/1080/format/jpg",
"width": 1920,
"height": 2560
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.655c265d000000003202f2f6?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
}
},
"comment_info": {
"like_count": 2,
"id": "65672bc6000000003300b6bf",
"content": "@babe.",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false
},
"time_flag": 0,
"id": "289173929",
"type": "comment/item",
"title": "评论了你的笔记",
"liked": false,
"time": 1701260233,
"user_info": {
"red_official_verify_type": 0,
"userid": "6198bf790000000010009a31",
"nickname": "YES.",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/6371b03b6d3615bf7f254360.jpg?imageView2/2/w/120/format/jpg"
},
"track_type": "27"
},
{
"liked": false,
"id": "289094648",
"title": "评论了你的笔记",
"time": 1701192627,
"user_info": {
"userid": "5a758a2211be1017694a8d60",
"nickname": "FI.",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1000g2jo2oa4o168ji0004a18c85253b0pprp4mo?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0
},
"track_type": "27",
"time_flag": 0,
"type": "comment/item",
"score": 289094648,
"item_info": {
"type": "note_info",
"id": "6565d913000000000f0296b5",
"image": "http://ci.xiaohongshu.com/1040g2sg30s14vg0gis6g5oeuc0d417n9r8sbg78?imageView2/2/w/1080/format/jpg",
"image_info": {
"url": "http://ci.xiaohongshu.com/1040g2sg30s14vg0gis6g5oeuc0d417n9r8sbg78?imageView2/2/w/1080/format/jpg",
"width": 1440,
"height": 1920
},
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"link": "xhsdiscover://item/discovery.6565d913000000000f0296b5?type=normal&sourceID=notifications&feedType=single",
"user_info": {
"red_official_verify_type": 0,
"userid": "61de601a0000000010009ee9",
"nickname": "蟹老板美食记",
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rs6rhol2k605oeuc0d417n98kfo7t0?imageView2/2/w/120/format/jpg"
},
"status": 0
},
"comment_info": {
"id": "656623b00000000014021411",
"content": "@susunail 我想食 但好q多人啊[笑哭R][笑哭R]",
"illegal_info": {
"status": 0,
"desc": "",
"illegal_status": "NORMAL"
},
"status": 0,
"liked": false,
"like_count": 0
}
},
{
"type": "comment/comment",
"score": 289059693,
"user_info": {
"image": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo30rvu6o8nio005ofslpr8d89eb13stv0?imageView2/2/w/120/format/jpg",
"red_official_verify_type": 0,
"indicator": "作者",
"userid": "61fcae76000000002102a12e",
"nickname": "阿梨絮絮叨"
},
"item_info": {
"status": 0,
"type": "note_info",
"id": "656540f30000000038031de0",
"image": "http://ci.xiaohongshu.com/1040g00830s0idh71ik005ofslpr8d89ehfpoo98?imageView2/2/w/1080/format/jpg",
"image_info": {
"width": 828,
"height": 930,