-
Notifications
You must be signed in to change notification settings - Fork 72
/
result_iPhone.json
3746 lines (3746 loc) · 173 KB
/
result_iPhone.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
[
{
"mid": "4199439784429650",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "6095888503",
"username": "空城少年柠檬酸",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439528265489",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "2934092005",
"username": "今日依旧帅气的菜酱菜",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439515791805",
"text": "小见日报社独家爆料——PART 2帮朋友传话这种老掉牙的套路你们文生哥哥居然还在用一脸懵的小珊妮 ————来自张文生iPhone 20客户端 ",
"userid": "6262385354",
"username": "电影遇见你真好",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 1
},
{
"mid": "4199439419192495",
"text": "【苹果iOS 11.3曝光:新增性能限制按钮、iPhone X暗黑模式现身】有iOS开发者爆料称,下个iOS正式版本将会是iOS 11.3,除了加入性能限制按钮之外,同时还会修复大量的bug、并且为iPhone X带来专属的暗黑模式!酷不酷? ",
"userid": "5846460177",
"username": "手机数码那些事",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1
},
{
"mid": "4199439264753243",
"text": "坐第一程就掉了个苹果原配iphone7的耳机,虽然使用率没有很高,但心塞,觉得自己不靠谱,连个小耳机都能弄丢。最近总是恍恍惚惚,目标不清晰,没有意志力,执行力低下。 ",
"userid": "1752829147",
"username": "一个绝世好名字",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439205844227",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "5186387802",
"username": "L-DDDDN",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199438668993801",
"text": "【¥5.8】iphone6系列. 全屏钢化膜 ",
"userid": "5992883901",
"username": "优惠仓",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 0
},
{
"mid": "4199438471765851",
"text": "♡点赞➕关注 评论拿图 今日份的鲜花壁纸 少女心壁纸 性冷淡壁纸 ",
"userid": "5594601510",
"username": "ZhuYanXin_",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 3
},
{
"mid": "4199438412810508",
"text": "推主takoyaki_ogre教大家只要在iPhone数据线上套上圆珠笔里的弹簧,就能很好的保护接头处不会损坏... ",
"userid": "5874421195",
"username": "幽默段子菌",
"reposts_count": 6,
"comments_count": 0,
"attitudes_count": 7
},
{
"mid": "4199440463805614",
"text": "宏远高科电子:2018年转发关注送iPhone 8 Plus和无人机,我抽奖。 年终转发关注送iPhone 8 Plus 播种一份期待,收获一份喜悦。能够参加这么给力的活动真的很激动,转发的时候是期待的,期待的过程是幸福的,幸福的瞬间是收获的时候。",
"userid": "1638461697",
"username": "冯尚勤",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439931525548",
"text": "【¥13.6】iPhone6s/7/8Plus原创文艺猫钢化彩膜,孔位精准,高透保真,值得下手! ",
"userid": "5873866954",
"username": "华予萍",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 0
},
{
"mid": "4199439855484590",
"text": "这个手机真是好多年了,第一部iPhone ",
"userid": "5309543941",
"username": "糖小果豆",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439675182549",
"text": "【男子为iPhone买电池用牙咬测真假 结果瞬间爆炸】1月19日,某手机商城的监控视频显示,男子在商场购买iPhone电池时,为了测试电池的真假,竟然拿起电池张口就咬。就在男子从嘴里取出电池的一瞬间,电池突然发生爆炸,变成一团火球。男子本能将燃烧的电池扔向一边,周边的人们都吓得不知所措。 ...全文",
"userid": "1895096900",
"username": "深圳新闻网",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199439516274443",
"text": "库克终于放大招!2018款iPhone X支持双卡 叽歪数码的秒拍视频 ",
"userid": "6042105407",
"username": "叽歪数码",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199438181898138",
"text": "想买一部iphone5。大家有啥意见。早已把“平凡”二字给抛弃了! ",
"userid": "3068812625",
"username": "呵呵pfvxg0zmv",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199437598780170",
"text": "iphone迷恋的人也确实还很多",
"userid": "3719230943",
"username": "陆功江",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199437330569455",
"text": "不只一次见到iPhone X用户问“怎么设置显示电量百分比”的问题了,哈哈,不能显示百分比估计让不少强迫症难受极了。必须打开电量百分比显示的人,是你吗? ",
"userid": "6104229610",
"username": "丶环境难民",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199437192455248",
"text": "【1.9】安卓转iphone6/7数据线转接头 领券下单:网页链接 ",
"userid": "5408086645",
"username": "内部优惠大赏",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199437125961962",
"text": "哈哈哈哈华强北简直了,这都是什么?iPhone X背部?魅族腰圆键? ",
"userid": "6104213395",
"username": "性感的GentleKaKa",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199437121522889",
"text": "【作死!男子用牙咬iPhone电池测真假 结果当场爆炸】近日,监控视频中一男子在商场购买iphone电池时,为了测试电池的真假,男子竟然拿起电视张口就咬。就男子从嘴里取出电池的一瞬间,电池突然发生爆炸。男子本能将燃气的电池扔向一边,周边的人都吓得不知所措。网页链接 ",
"userid": "1741801024",
"username": "凤凰卫视欧洲台",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199436969962683",
"text": "两台iPhone也是不错的",
"userid": "3324031572",
"username": "胜天半子啦啦",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199436680567036",
"text": "【太阳能充电比基尼】由多块太阳能电池板组成,能为数码产品带来80多个小时的电力……达人JessicaJarrell与JamesAlan激情串烧CarlyRaeJepsen冠单《CallMeMabe》和Maroon5冠单《Payphone》...两首歌合在一起。大爱这个版本!I字头产品没电了!太赞了,炎炎夏日!竟然有一种新感觉!IPad、就不用担心IPho ...全文",
"userid": "3983182512",
"username": "雪语兔兔",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199436403443619",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】一家电脑城内,一男子在柜台前想要为手机更换电池,竟顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生爆炸,一大团火球瞬间喷出,将周围人吓了够呛,所幸无人员伤亡…提醒:锂电池千万别用力挤压或高温加热,更不能刺破、牙咬! ...全文",
"userid": "2011520141",
"username": "东莞阳光网",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199436370136530",
"text": "今天再次被询问为什么不用iPhone了...或许每个人都有一个标签吧...欲望在膨胀...实力却在原地踏步...又该去搞点事情做了... ",
"userid": "2210456897",
"username": "看见-_-tua",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199435426611373",
"text": "新年本命年红色捏脸柴犬狗狗iPhone8手机壳【11】网页链接 ",
"userid": "2341879117",
"username": "慢慢挖白菜",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199435179755303",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "3266727512",
"username": "对我而言那个可爱的他",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199435175379504",
"text": "【分析师:中国消费者不买账 iPhone X出货量将下降23%】郭明錤在报告中称:“中国高端消费者喜欢大屏幕手机。iPhone X采用‘刘海’式设计,许多应用与其不兼容。许多消费者表示,iPhone X屏幕看起来要比5.5英寸iPhone屏幕小。此外,较高的价格也在一定程度上压制了市场需求。” 你买X了吗? ",
"userid": "6094893962",
"username": "芝阿芙199410",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199435133538538",
"text": "版本8.1.0,iPhone8,1,OS11.1.2,网络WWAN 希望可以注销微博账号 ",
"userid": "5233988115",
"username": "养猫一百只",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199434310626573",
"text": "亲爱的辉妈,: 《最爱偶像》投票现在告急,辉崽票数很低这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。 现在 联合打榜组准备明天集资。希望大家能积极响应。我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的 ...全文",
"userid": "3765043880",
"username": "LHHH_WNW",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 3
},
{
"mid": "4199434126372258",
"text": "iphone 4s已经回ios6.3;突然电池恢复正常了! ",
"userid": "5522328438",
"username": "帧观之志",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199434109363928",
"text": "外媒Appdisqus曝光了UMIDIGI的新款全面屏谍照,这款新机名为UMIDIGI Z2.其正面神似苹果iPhone X,顶部也是刘海造型,细节区别是它的中框并非高光不锈钢,背部采用了玻璃材质,双摄像头呈竖形排列,下方是指纹识别。这款全面屏新机采用了18:9屏幕,配备4GB内存,前后均配备双摄像头,电池容量为5100mAh ...全文",
"userid": "6102737010",
"username": "西门不二101",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199434008789158",
"text": "因为体谅他人,尝试理解过很多事情。iPhone被用文件袋寄过,配送员直接摔在地上,我告诉他那是手机的时候,他自己都不信。为了不使打包的快递点工作人员丢掉工作,选择不投诉。为了让外卖小哥一天的努力不白费,超时1.5h,他时限内点已送达,也选择不投诉。还有很多,因为对比起来,服务业从业人员 ...全文",
"userid": "2170059673",
"username": "阿阮如是_Clover",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 0
},
{
"mid": "4199433308837241",
"text": "尝试!人民日报海外版-海外网的秒拍视频【男子用牙咬iPhone电池测真假 一大团火球瞬间喷出】一家电脑城内,一男子在柜台前想要为手机更换电池,竟顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生爆炸,一大团火球瞬间喷出,将周围人吓了够呛,所幸无人员伤亡…提醒:锂电池千万别用 ...全文",
"userid": "1998988241",
"username": "胥荣东主任医师",
"reposts_count": 1,
"comments_count": 2,
"attitudes_count": 1
},
{
"mid": "4199433157837247",
"text": "亲爱的塌7: 《最爱偶像》投票现在告急,塌塌的排名在队内很低这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。 现在 联合打榜组准备明天集资。希望大家能积极响应。我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投 ...全文",
"userid": "3765043880",
"username": "LHHH_WNW",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199433111172450",
"text": "我分享了 的头条文章 编辑微博功能上线说明 ",
"userid": "1713829344",
"username": "战胜利",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199432398912043",
"text": "我在闲鱼发布了【苹果iphone7 美版无锁32g 三网通4g手机】 网页链接 ",
"userid": "2790273274",
"username": "漂泊飞雪520",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199432142044525",
"text": "调整的过程就能感受到苹果的逻辑真强大,实用性和美感都能兼得,各个设备之间的关联性极强。iCloud我没用,不想各个设备都共享,因存储空间有限,还要付费买空间还是算了。一般简单的备忘录,safari,钥匙串等等都需要共享。细节有浏览器的书签共享,添加到阅读列表导出书签等等都值得体验。日常设备间 ...全文",
"userid": "5991407077",
"username": "拾貳貳一",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199431441776098",
"text": "无水印壁纸 每日的搞笑壁纸 无水印 喜欢拿走 ",
"userid": "5489956440",
"username": "Y_关于壁纸",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1
},
{
"mid": "4199431312489139",
"text": "垃圾iPhone一摔就烂 ",
"userid": "3777370811",
"username": "空空kohyeah",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199431119467342",
"text": "当你月薪五千后 你就会觉得那些用iphone土豪金的人没有装逼 当你月薪破万后 你就会觉得那些拿着单反瞎晃悠的人也没有装逼 当你一年能赚五十万后,你就会觉得那些奔驰宝马保时捷飙车党们也没有装逼 当你年薪百万后 你就会觉得那么经常全身满满奢侈品的人也没有装逼 那就是他们的日常!很多时候 有些人在 ...全文",
"userid": "3209803092",
"username": "Y_于影的于于影的影",
"reposts_count": 0,
"comments_count": 5,
"attitudes_count": 2
},
{
"mid": "4199430037117516",
"text": "驗貨就爆炸?iPhone電池在男口中1秒變火球 网页链接 ",
"userid": "6169289487",
"username": "唐維新Ta",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199429172479353",
"text": "外媒Appdisqus曝光了UMIDIGI的新款全面屏谍照,这款新机名为UMIDIGI Z2.其正面神似苹果iPhone X,顶部也是刘海造型,细节区别是它的中框并非高光不锈钢,背部采用了玻璃材质,双摄像头呈竖形排列,下方是指纹识别。这款全面屏新机采用了18:9屏幕,配备4GB内存,前后均配备双摄像头,电池容量为5100mAh ...全文",
"userid": "6094993769",
"username": "银古桑pimola",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199428409247723",
"text": "iPhone 6屏幕的磨损情况,屏幕上部严重发黄,确实是撑不下去了 天津·图书大厦 ",
"userid": "6351183119",
"username": "暖男小宏",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 1
},
{
"mid": "4199428350797313",
"text": "【iPhone X Plus概念图曝光 双SIM卡/全面更彻底】iPhone X展现了苹果追逐全面屏的决心,根据多方消息显示,今年的新iPhone X会有三款:常规更新,廉价版和大屏幕的iPhone X Plus。现在,国外爆料者送出了后者的外形图,前刘海变小,边框也窄了很多,双SIM卡插槽。是你们想象中iPhone X的进化方向吗? ",
"userid": "1737694250",
"username": "手机中国",
"reposts_count": 4,
"comments_count": 5,
"attitudes_count": 3
},
{
"mid": "4199428350516700",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】一家电脑城内,一男子在柜台前想要为手机更换电池,竟顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生爆炸,一大团火球瞬间喷出,将周围人吓了够呛,所幸无人员伤亡…提醒:锂电池千万别用力挤压或高温加热,更不能刺破、牙咬! ...全文",
"userid": "5499751075",
"username": "平安重庆",
"reposts_count": 1,
"comments_count": 2,
"attitudes_count": 2
},
{
"mid": "4199428120227590",
"text": "气味唤醒的培根闹铃,而它的气味,正是培根的香味。将硬件(一个气体喷射装置)接入iPhone耳机孔,下载对应APP(也是培根主题),待闹铃响起,随之飘来的,便是培根的香味。 ",
"userid": "6226967702",
"username": "被承包的si_塞壬",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199427885743941",
"text": "【¥5.8】卡绮 iphone6-6splus钢化膜,这个一定记得问卖家要对应的壁纸,感觉有了壁纸才会更好看 ",
"userid": "2077160910",
"username": "秒杀排行榜",
"reposts_count": 0,
"comments_count": 15,
"attitudes_count": 21
},
{
"mid": "4199427801923079",
"text": "【一咬便知真假?中国男咬iPhone电池即爆炸】中国一名男子,上周五到一商场更换iPhone电池,为了验明所换的电池并非假货,于是便将电池放入嘴里打算一咬试真假,岂料电池马上冒火花并爆炸,连旁边的路人都被吓到。片段来自商场的闭路电视,1月19日拍摄到一名男子到商场一间商店更换电池,幸好男子并无 ...全文",
"userid": "6021004805",
"username": "搞机的日常",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199427214366292",
"text": "【良心吗?!苹果iPhone 6 Plus整机可换iPhone 6s Plus】苹果授权服务提供商的内部文件显示,如果用户的iPhone 6 Plus受损,并符合官方整机换新条件,苹果可能会用一台新的iPhone 6s Plus替代原本的官换iPhone 6 Plus,持续时间为3月份内。苹果在文件中指出:“现在起到2018年3月底,部分iPhone 6 Plus ...全文",
"userid": "6094829863",
"username": "chalet逸米",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199427084373341",
"text": "投票:你认为 iPhone X 会在今年秋天停产吗?你觉得 iPhone X 会在今年秋天停产吗? ",
"userid": "3097378697",
"username": "ZEALER中国",
"reposts_count": 304,
"comments_count": 398,
"attitudes_count": 35
},
{
"mid": "4199426253888694",
"text": "【男子为iPhone买电池用牙咬测真假 结果瞬间爆炸】1月19日,某手机商城的监控视频显示,男子在商场购买iPhone电池时,为了测试电池的真假,竟然拿起电池张口就咬。就在男子从嘴里取出电池的一瞬间,电池突然发生爆炸,变成一团火球。男子本能将燃烧的电池扔向一边,周边的人们都吓得不知所措。 ...全文",
"userid": "1751703171",
"username": "十堰交通音乐广播",
"reposts_count": 1,
"comments_count": 3,
"attitudes_count": 2
},
{
"mid": "4199425931214157",
"text": "无水印壁纸 晨光文具上的兔子米菲 动物壁纸 ",
"userid": "5489956440",
"username": "Y_关于壁纸",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 2
},
{
"mid": "4199425221552461",
"text": "和你一次漫长的北海道之旅 (IPhone +vsco+photogrid ) ",
"userid": "2004000921",
"username": "-嘴兒-",
"reposts_count": 4,
"comments_count": 24,
"attitudes_count": 55
},
{
"mid": "4199425062507277",
"text": "五官没有大问题的小姐姐,因为以前皮肤黑黄看起来像营养不良不精神无朝气,在熙曼几个月的时间各种管理搭配白了不止三个度哦我们自己都觉得不可思议,后一张是刚刚做完皮肤什么都没擦iphone后置摄像头无任何ps的超级真相图。白了气质看着都舒服,整个人也变得洋气了。说一百遍亚洲人请一定 ...全文",
"userid": "2161739401",
"username": "Soul美人制造",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199424211165890",
"text": "iPhone X全新官换机 全国全网通 保修接近一年 64G 7299元/256G 8199元 这里拍 O ",
"userid": "6094673158",
"username": "里家移_",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199423472493053",
"text": "卸 了 妆,你的IPHONE X还认 识你吗 M 宝 .莲 眼 唇 卸 妆 液 150ml 19.9 杭州 ",
"userid": "5210310984",
"username": "吃安利的Meiko酱",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 27
},
{
"mid": "4199423356106241",
"text": "锤子科技的那套“足迹”手机壳现在出了苹果iPhone 7 Plus和8 Plus版本,在京东售价39元。不过说实话,不觉得非常好看…看个人喜好吧… ",
"userid": "1906286443",
"username": "钟文泽",
"reposts_count": 4,
"comments_count": 45,
"attitudes_count": 20
},
{
"mid": "4199422180697797",
"text": "如果当时我没注销lofter账号就好了 有好多iPhone照片都没了 很多照片还是辛苦一番的 好可惜 ",
"userid": "1743057741",
"username": "清河摄神",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199421908392076",
"text": "很多人都有一种感觉:ios11的体验让人怀疑自己的iPhone X是不是假的。 ",
"userid": "6100000357",
"username": "AMUSCLEGIRL1999",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199421891243530",
"text": "发布了头条文章:《聚美或将入局无人货架 陈欧是想当投资界“明灯”??》 即便是续航能力一向不怎么样的iPhone大卖,似乎也带不动共享充电宝的业务,而“不务正业”的陈欧也因此曾一度和股东闹僵。不过即便如此,陈欧似乎还是决定将“不务正业”继续下去——近日有自媒体爆料称,聚美优品开始地推自己 ...全文",
"userid": "5828676220",
"username": "三易生活",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199421828660181",
"text": "【齐刘海太丑:传闻iPhoneX或于今秋停产】据台湾分析师郭明池的最新报告,iPhone X上季度发货量仅仅只有1800万部,远低于市场预期。根据调研显示,“刘海屏”的设计并不受消费者喜欢,很有可能导致这部iPhone十周年大作上市一年就短命停产。这会不会对安卓厂商选择“刘海屏”起到前车之鉴呢? ",
"userid": "6100820784",
"username": "南岚_久",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199421304297797",
"text": "女票要求男票给换iPhone7,这理由简直无法反驳幽默搞笑家的秒拍视频 ",
"userid": "6065537078",
"username": "monroe人微言",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199421217052409",
"text": "今天一下午我装iOS 11系统的iPhone 7,一直处于正在搜索网络和无服务状态中切换,大家有遇到这个问题么,Apple are you ok ? ",
"userid": "2971069907",
"username": "少华有态度",
"reposts_count": 0,
"comments_count": 122,
"attitudes_count": 51
},
{
"mid": "4199421174408514",
"text": "现在iPhone 6确实太卡了,连备用机都不够格 天津·图书大厦 暖男小宏的秒拍视频 ",
"userid": "6351183119",
"username": "暖男小宏",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 1
},
{
"mid": "4199420801215417",
"text": "鑫盾 iPhone数据线 =18领券拍:网页链接买买买,买不停吧! 一家专门发优惠券的微博,要啥券有啥券。西安 ",
"userid": "3133539990",
"username": "FashionsDream",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199420801213458",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】一家电脑城内,一男子在柜台前想要为手机更换电池,竟顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生爆炸,一大团火球瞬间喷出,将周围人吓了够呛,所幸无人员伤亡…提醒:锂电池千万别用力挤压或高温加热,更不能刺破、牙咬!( ...全文",
"userid": "3224273557",
"username": "无锡24小时",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 2
},
{
"mid": "4199420801213251",
"text": "鑫盾 iPhone数据线 =18领券拍:网页链接买买买,买不停吧! 一家专门发优惠券的微博,要啥券有啥券。杭州 ",
"userid": "5212229176",
"username": "小漫是白菜控",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199420801212691",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】国内一家电脑城内,一名男子在柜台前想要为手机更换电池,竟然顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生了爆炸,一大团火球瞬间喷出,将周围的人吓了够呛,但还好没有人员伤亡(凤凰网风视频) ...全文",
"userid": "1704819467",
"username": "经济之声",
"reposts_count": 3,
"comments_count": 5,
"attitudes_count": 5
},
{
"mid": "4199420167882170",
"text": "版本8.1.0,iPhone10,2,OS11.2.2,网络WIFI ",
"userid": "2101497984",
"username": "奥曼托",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199419044167892",
"text": "Macrumors 的消息,如果你的 iPhone 6 Plus 出现故障符合整机更换的条件,苹果有可能会直接给你换台 iPhone 6s Plus,原因是 6P 电池缺货严重居然还有这操作!原文: ",
"userid": "6092449835",
"username": "lyyhed_jilt",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199418842006628",
"text": "【消费者表示 iPhone6 换了新电池后还是卡】《每周质量报告》节目里,消费者小于,2014年买的iPhone 6 本来还想再用2年,结果升级iOS 10/11系统后手机越来越卡,于是按照苹果给的方案,重装系统和换电池都做了以后,还是卡顿。还有一位女士用iPhone 7 升级到iOS 11后也出现卡顿。 ",
"userid": "6092449835",
"username": "lyyhed_jilt",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199427054754307",
"text": "Iphone7 32g 银色,澳版和港版一样,支持移动联通4g,激活充电循环3次,电池效率100%,激活未使用过,99新,可以当新机,好价格2680!仅一台",
"userid": "2385157464",
"username": "小哥数码的微博",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199426970613867",
"text": "【¥5.8】卡绮iPhone6/7卡通钢化彩膜 拍网页链接 年货节→网页链接 北京·前圆恩寺胡同 ",
"userid": "2108549651",
"username": "超级玛丽每日分享",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199426928732247",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "5165472836",
"username": "谦军万马_717",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199426790566906",
"text": "放大招啦!小会长精心准备过年好礼,中啥都超值!【我已领取会员5折卡】还有iPhone X、百元现金红包、1G流量等奖品等你领!红包好礼邀你领 ",
"userid": "2151945353",
"username": "给熊剪指甲",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199413679732522",
"text": "【分析师:中国消费者不买账 iPhone X出货量将下降23%】郭明錤在报告中称:“中国高端消费者喜欢大屏幕手机。iPhone X采用‘刘海’式设计,许多应用与其不兼容。许多消费者表示,iPhone X屏幕看起来要比5.5英寸iPhone屏幕小。此外,较高的价格也在一定程度上压制了市场需求。” 你买X了吗? ",
"userid": "6092645647",
"username": "befool张小傲去ESOMD",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199413481844049",
"text": "终于用上iPhone X了,激动!包纸玩机的秒拍视频 ",
"userid": "3030737153",
"username": "包纸玩机",
"reposts_count": 5,
"comments_count": 10,
"attitudes_count": 17
},
{
"mid": "4199412672676356",
"text": "iPhone X二代齐曝光:Plus、廉价版真有爱! ",
"userid": "1653757132",
"username": "梁Microblog",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199412416663406",
"text": "iPhone健康刷不出步数➡️指南针无反应➡️罗表仪损坏➡️主板硬件问题➡️苹果官方2000维修费➡️火车站不夜城350搞定~~ ",
"userid": "2040047272",
"username": "看那个胖丫头",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199411933898716",
"text": "iPhone X 对比iPhone XI (2018)渲染图,依然采用异形全面屏,不过刘海更小,边框更窄,还加入双卡双待?这设计大家认为好看么 ",
"userid": "6100820079",
"username": "qmaggie_oooo",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199411338847474",
"text": "阿桶 你呢iPhone X呢 ",
"userid": "5674686426",
"username": "苏你一下",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199409803795653",
"text": "《苹果真的不能破解iPhone加密的数据吗?》动不动就拿密码学来说事儿,谁说iphone加密数据不能破解,不仅能够破解,而且都被取证公司用过无数次... ",
"userid": "3504469365",
"username": "雨景心生",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199409304155657",
"text": "哥哥是白色iphone x呀 ",
"userid": "5143247186",
"username": "NANN思密达",
"reposts_count": 4,
"comments_count": 1,
"attitudes_count": 13
},
{
"mid": "4199408990439860",
"text": "打开辅助功能的“颜色反转”后,再浏览Apple官网,突然觉得iPhone X很惊艳呀 ",
"userid": "2322312760",
"username": "UNCLE疯人说",
"reposts_count": 0,
"comments_count": 13,
"attitudes_count": 14
},
{
"mid": "4199408960166799",
"text": "亲爱的罐妈, 《最爱偶像》投票现在告急这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。 现在 准备明天集资。希望大家能积极响应。我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的很简单可以投成员,也 ...全文",
"userid": "3765043880",
"username": "LHHH_WNW",
"reposts_count": 3,
"comments_count": 3,
"attitudes_count": 19
},
{
"mid": "4199408176055727",
"text": "我們海哥更新了IG,最不上線滴iPhone 8 plus 很迅速地更新了,然而..........把我(敷衍的)誇讚還來!!! ",
"userid": "3203477874",
"username": "TinyLight1015",
"reposts_count": 4,
"comments_count": 0,
"attitudes_count": 10
},
{
"mid": "4199408138743593",
"text": "据苹果公司介绍,目前有65%的iPhone和iPad正在使用iOS 11,而28%仍然使用iOS 10。只有7%的设备仍在使用早期版本的iOS。这些数字是在1月18日由App Store测量的,所以信息是最新的。相比之下,苹果在一年前就宣布,76%的iPhone和iPad正在运行当时最新版本的iOS 10。看来安卓在系统生态碎片化处理上还 ...全文",
"userid": "6097980483",
"username": "森大娘T只想要你",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199407937220046",
"text": "iphone se 2018 LANGER探科技的秒拍视频 ",
"userid": "5844048792",
"username": "LANGER探科技",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199407694111580",
"text": "澳大利亚🇦🇺公路上!两只考拉🐨打架、相扑、摔跤🤼♀️德赫勒epee-A的秒拍视频 ",
"userid": "3213815490",
"username": "epee-A",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 1
},
{
"mid": "4199407433459175",
"text": "张近东,99元人民币换iPhone电池,赚不了几个钱,换iPhone电池的人一定会挤爆门店,谁出的馊主意? ",
"userid": "5718656007",
"username": "在浅川香樟树下的胜哥哥",
"reposts_count": 1,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199406821891178",
"text": "女孩生日那天,男孩蒙住她的眼睛说:“宝贝跟我来。”辗转半小时后,男孩说:“睁开眼吧。”女孩看着周围,满怀期待地问:“然后呢?”男孩没有回答,拿出一部iphone 6递给女孩。女孩激动地说:“爱死你了,这个礼物好棒耶! ”“给你的父母打个电话”,男孩冷冷地说:“就说你在我手上。” ",
"userid": "6338434015",
"username": "啪拉Antonia",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199406322543329",
"text": "今天是一天的实训 碰了一天不同颜色不同不良情况的iphone8plus 又流水实习外加考试一下午,特么这仅仅才一天啊!导致一群人看到苹果手机就恶心呐!! ",
"userid": "5627527478",
"username": "哒哒的尼酱",
"reposts_count": 0,
"comments_count": 2,
"attitudes_count": 1
},
{
"mid": "4199406184490526",
"text": "震惊!!!!快去 关 注 许下你们的 愿 望!!!拍 立 得 iPhone单 反 卡 西 欧 通 通 不是 问 题!!! ",
"userid": "5719308803",
"username": "省钱白菜价呀",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199406150551697",
"text": "有一个小伙子陪女朋友路过手机店,姑娘看中了最新iPhone小伙问她:喜欢吗?她说:喜欢!小伙说:喜欢就多看一会吧! 他俩就从白天一直看到了晚上,姑娘突然问他:为什么我喜欢,你却不给我买呢? 他回:爱你的人不一定是愿意为你花钱的人,而是愿意花时间陪你的人! 姑娘含着眼泪点了点头,感动的说 ...全文",
"userid": "2805990480",
"username": "销售技巧和话术",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1
},
{
"mid": "4199405332283586",
"text": "你的 iPad 放在家里吃灰? 从几大方面告诉你,为什么 iPad 的用户体验有时还远不如 iPhone,来自 的 iPad Pro 真实体验报告单:ZEALER-X的秒拍视频 ",
"userid": "6246439935",
"username": "ZEALER-X",
"reposts_count": 3,
"comments_count": 12,
"attitudes_count": 22
},
{
"mid": "4199404862911782",
"text": "今天白天来到白川乡的合掌村,从来没见过这么厚的雪啊……,据说下一夜可达1.5m厚 (全部用 iPhone X 拍摄,全部直出,未加任何滤镜)各位感受一下 2日本·合掌村 ",
"userid": "6091337267",
"username": "地场卫的初恋cherub",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199402744576597",
"text": "【2017年全球被山寨手机品牌分布,三星榜首】① 三星② iPhone③ 小米④ OPPO ⑤ 华为 ",
"userid": "6100887348",
"username": "喂喂js喂喂为什么",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199402346844347",
"text": "挂一个无耻的APP 想下青蛙旅行,跳出来这个,没留心下了直接扣了30元不说,打开来竟然是青蛙版的跳一跳!还全是广告不说了我要取消iPhone的免密码支付 ",
"userid": "3124707683",
"username": "广深学车冰冰范",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 1
},
{
"mid": "4199402031624624",
"text": "苹果抛出二选一:降频与重启,IPhone要把自己玩死?(同步自)O苹果抛出二选一:降频与重启,IPhone要把自己... ",
"userid": "6091385122",
"username": "丁丁市穿马甲",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199401842852338",
"text": "震惊!!!!快去 关 注 许下你们的 愿 望!!!拍 立 得 iPhone单 反 卡 西 欧 通 通 不是 问 题!!! ",
"userid": "1958129562",
"username": "抢券美少女",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199400139932335",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】一家电脑城内,一男子在柜台前想要为手机更换电池,竟顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生爆炸,将周围人吓了够呛,所幸无人员伤亡…提醒:锂电池千万别用力挤压或高温加热,更不能刺破、牙咬!凤凰网风视频的秒拍视频 ",
"userid": "1903747781",
"username": "西安公安",
"reposts_count": 5,
"comments_count": 9,
"attitudes_count": 3
},
{
"mid": "4199399977121349",
"text": "两个商品信息:1.之前联动的7net追加手机壳,3500一个,目前只有iPhone6/6s/7/8四个机型的手机壳。(6P和X没人权系列)2.神崎兰子生日set已经发售,6666日元,2月19日截单,4月上旬出荷。 ",
"userid": "1701215777",
"username": "Cook1e丶",
"reposts_count": 4,
"comments_count": 0,
"attitudes_count": 3
},
{
"mid": "4199398965894180",
"text": "【齐刘海太丑:传闻iPhoneX或于今秋停产】据台湾分析师郭明池的最新报告,iPhone X上季度发货量仅仅只有1800万部,远低于市场预期。根据调研显示,“刘海屏”的设计并不受消费者喜欢,很有可能导致这部iPhone十周年大作上市一年就短命停产。这会不会对安卓厂商选择“刘海屏”起到前车之鉴呢? ",
"userid": "6098076230",
"username": "bream四号门",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199398726867377",
"text": "新浪2017年度科技风云榜,上榜的手机有:iPhone X——年度最佳创新奖,华为mate10——年度最佳突破奖,荣耀9——年度最青少年欢迎手机,魅蓝note6——年度最佳千元拍照手机,小米mix2——年度最佳设计手机,金立M7——商年度务精英选择手机,OPPO R11S——年度最佳拍照手机,VIVO X20——年度最畅销手机 ...全文",
"userid": "6098076230",
"username": "bream四号门",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199398604755784",
"text": "【2017年全球被山寨手机品牌分布,三星榜首】① 三星② iPhone③ 小米④ OPPO ⑤ 华为 ",
"userid": "6091382975",
"username": "优雅Stde米思",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199398152361306",
"text": "【男子牙咬iPhone电池测真假 电池爆炸】国内一家电脑城内,一名男子在柜台前想要为手机更换电池,竟然顺手将电池放在嘴里,想要咬一咬测试真伪。结果电池表面在被刺破后,发生了爆炸,一大团火球瞬间喷出,将周围的人吓了够呛,但还好没有人员伤亡(凤凰网风视频) ...全文",
"userid": "1887790981",
"username": "广州日报",
"reposts_count": 24,
"comments_count": 76,
"attitudes_count": 40
},
{
"mid": "4199397576830385",
"text": "小米6X,全面屏,后置类iPhone X双摄,后置指纹。这外观如何? ",
"userid": "6097304544",
"username": "jennyceylon兔子",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199397543945306",
"text": "有个问题比较纳闷,搜了一下Note8的所有评论仅1万多条,而iPhone 8的评论30-40多万条,连iPhone 8的零头都不到,反观iPhone 8用了那么多年的外观,一直被爆销量不佳,你们说三星Galaxy Note8那么好的机器为啥销量那么低? ",
"userid": "6091503745",
"username": "雪小rumaki丹",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},
{
"mid": "4199395216007958",
"text": "发两张我片的live photo:)喜欢可以做壁纸哦 ",
"userid": "5161183621",
"username": "每天美洋洋",
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 8
},
{
"mid": "4199395056807713",
"text": "【外媒放苹果iPhone XL概念图:屏占比更高,支持双SIM卡】2018年才刚开始,但现在就有不少媒体开始预测苹果的新款iPhone了,今天外媒iDROP就放出了"iPhone XL"的概念图,让我们一起来看看吧……详情点击:外媒放苹果iPhone XL概念图:屏占比更高,支持双SIM卡 ",
"userid": "1826017320",
"username": "IT之家",
"reposts_count": 4,
"comments_count": 20,
"attitudes_count": 9
},
{
"mid": "4199394805267226",
"text": "当你年赚100万后、你就会觉得那些拿着单反的人也没有装逼……你会觉得那些奔驰宝马飙车党们也没有装逼;只是你自己没能力!你就会觉得那些用iPhone土豪金的人没有装逼;别人也不该有:当你月薪一万后……真正的心态是这个东西你自己没有!当你月薪五千后……其实谁也没有装…… 马鞍山·安徽省交通集团巢湖汽运有限公司和县分公司(新汽车站) ",
"userid": "2928718275",
"username": "念葱葱",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0
},