-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweibo.log.1
1637 lines (1535 loc) · 98.5 KB
/
weibo.log.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
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
643 DEBUG [2014-04-03 23:52:26] Content-Type:text/plain;charset=UTF-8
643 DEBUG [2014-04-03 23:52:26] Content-Length:113
643 DEBUG [2014-04-03 23:52:26] Connection:keep-alive
643 DEBUG [2014-04-03 23:52:26] Pragma:No-cache
643 DEBUG [2014-04-03 23:52:26] Cache-Control:no-cache
643 DEBUG [2014-04-03 23:52:26] Expires:Thu, 01 Jan 1970 00:00:00 GMT
643 DEBUG [2014-04-03 23:52:26] Api-Server-IP:10.75.2.82
646 DEBUG [2014-04-03 23:52:26] {"access_token":"2.00UHbvVFdrOBSB8086e89d75Jd2H3B","remind_in":"7787268","expires_in":7787268,"uid":"5052457964"}
1 INFO [2014-04-03 23:53:00] code: 3fc74481d2c1e1793d70a8644e79f875
125 DEBUG [2014-04-03 23:53:00] Request:
125 DEBUG [2014-04-03 23:53:00] POSThttps://api.weibo.com/oauth2/access_token
628 DEBUG [2014-04-03 23:53:01] Response:
628 DEBUG [2014-04-03 23:53:01] https StatusCode:200
628 DEBUG [2014-04-03 23:53:01] Server:nginx/1.2.0
628 DEBUG [2014-04-03 23:53:01] Date:Thu, 03 Apr 2014 15:52:47 GMT
628 DEBUG [2014-04-03 23:53:01] Content-Type:text/plain;charset=UTF-8
628 DEBUG [2014-04-03 23:53:01] Content-Length:113
628 DEBUG [2014-04-03 23:53:01] Connection:keep-alive
628 DEBUG [2014-04-03 23:53:01] Pragma:No-cache
628 DEBUG [2014-04-03 23:53:01] Cache-Control:no-cache
628 DEBUG [2014-04-03 23:53:01] Expires:Thu, 01 Jan 1970 00:00:00 GMT
628 DEBUG [2014-04-03 23:53:01] Api-Server-IP:10.75.25.86
630 DEBUG [2014-04-03 23:53:01] {"access_token":"2.008WbvVFdrOBSBb76d644f1dsfkNTC","remind_in":"7787233","expires_in":7787233,"uid":"5052459511"}
0 INFO [2014-04-03 23:53:28] code: 5dae28af6710c9d9a0f1bfb03a2376eb
121 DEBUG [2014-04-03 23:53:28] Request:
121 DEBUG [2014-04-03 23:53:28] POSThttps://api.weibo.com/oauth2/access_token
612 DEBUG [2014-04-03 23:53:29] Response:
612 DEBUG [2014-04-03 23:53:29] https StatusCode:200
612 DEBUG [2014-04-03 23:53:29] Server:nginx/1.2.0
612 DEBUG [2014-04-03 23:53:29] Date:Thu, 03 Apr 2014 15:53:14 GMT
612 DEBUG [2014-04-03 23:53:29] Content-Type:text/plain;charset=UTF-8
612 DEBUG [2014-04-03 23:53:29] Content-Length:113
612 DEBUG [2014-04-03 23:53:29] Connection:keep-alive
612 DEBUG [2014-04-03 23:53:29] Pragma:No-cache
612 DEBUG [2014-04-03 23:53:29] Cache-Control:no-cache
612 DEBUG [2014-04-03 23:53:29] Expires:Thu, 01 Jan 1970 00:00:00 GMT
612 DEBUG [2014-04-03 23:53:29] Api-Server-IP:10.75.2.83
614 DEBUG [2014-04-03 23:53:29] {"access_token":"2.008JdwVFdrOBSB7759c6cf4d0REnlt","remind_in":"7787204","expires_in":7787204,"uid":"5052704101"}
0 INFO [2014-04-03 23:54:12] code: 7eb31c2cb525ed531e4935a7a4a5275e
120 DEBUG [2014-04-03 23:54:12] Request:
120 DEBUG [2014-04-03 23:54:12] POSThttps://api.weibo.com/oauth2/access_token
915 DEBUG [2014-04-03 23:54:13] Response:
915 DEBUG [2014-04-03 23:54:13] https StatusCode:200
916 DEBUG [2014-04-03 23:54:13] Server:nginx/1.2.0
916 DEBUG [2014-04-03 23:54:13] Date:Thu, 03 Apr 2014 15:53:59 GMT
916 DEBUG [2014-04-03 23:54:13] Content-Type:text/plain;charset=UTF-8
917 DEBUG [2014-04-03 23:54:13] Content-Length:113
917 DEBUG [2014-04-03 23:54:13] Connection:keep-alive
917 DEBUG [2014-04-03 23:54:13] Pragma:No-cache
917 DEBUG [2014-04-03 23:54:13] Cache-Control:no-cache
917 DEBUG [2014-04-03 23:54:13] Expires:Thu, 01 Jan 1970 00:00:00 GMT
917 DEBUG [2014-04-03 23:54:13] Api-Server-IP:10.75.25.115
921 DEBUG [2014-04-03 23:54:13] {"access_token":"2.00o25pVFdrOBSB0b94459d55hPQnZB","remind_in":"7787160","expires_in":7787160,"uid":"5050978912"}
0 INFO [2014-04-03 23:54:39] code: 30d9a6e591de93b9c9523bf119550031
126 DEBUG [2014-04-03 23:54:39] Request:
126 DEBUG [2014-04-03 23:54:39] POSThttps://api.weibo.com/oauth2/access_token
660 DEBUG [2014-04-03 23:54:40] Response:
660 DEBUG [2014-04-03 23:54:40] https StatusCode:200
660 DEBUG [2014-04-03 23:54:40] Server:nginx/1.2.0
660 DEBUG [2014-04-03 23:54:40] Date:Thu, 03 Apr 2014 15:54:25 GMT
660 DEBUG [2014-04-03 23:54:40] Content-Type:text/plain;charset=UTF-8
660 DEBUG [2014-04-03 23:54:40] Content-Length:113
661 DEBUG [2014-04-03 23:54:40] Connection:keep-alive
661 DEBUG [2014-04-03 23:54:40] Pragma:No-cache
661 DEBUG [2014-04-03 23:54:40] Cache-Control:no-cache
661 DEBUG [2014-04-03 23:54:40] Expires:Thu, 01 Jan 1970 00:00:00 GMT
661 DEBUG [2014-04-03 23:54:40] Api-Server-IP:10.75.2.83
663 DEBUG [2014-04-03 23:54:40] {"access_token":"2.00L1ewVFdrOBSBe935dfe420iaClVD","remind_in":"7787133","expires_in":7787133,"uid":"5052708611"}
0 INFO [2014-04-03 23:55:21] code: 8880542c2f6dac6898b4a42b26a8c0f9
121 DEBUG [2014-04-03 23:55:21] Request:
121 DEBUG [2014-04-03 23:55:21] POSThttps://api.weibo.com/oauth2/access_token
932 DEBUG [2014-04-03 23:55:22] Response:
933 DEBUG [2014-04-03 23:55:22] https StatusCode:200
933 DEBUG [2014-04-03 23:55:22] Server:nginx/1.2.0
933 DEBUG [2014-04-03 23:55:22] Date:Thu, 03 Apr 2014 15:55:07 GMT
933 DEBUG [2014-04-03 23:55:22] Content-Type:text/plain;charset=UTF-8
933 DEBUG [2014-04-03 23:55:22] Content-Length:113
933 DEBUG [2014-04-03 23:55:22] Connection:keep-alive
933 DEBUG [2014-04-03 23:55:22] Pragma:No-cache
933 DEBUG [2014-04-03 23:55:22] Cache-Control:no-cache
933 DEBUG [2014-04-03 23:55:22] Expires:Thu, 01 Jan 1970 00:00:00 GMT
933 DEBUG [2014-04-03 23:55:22] Api-Server-IP:10.73.89.47
936 DEBUG [2014-04-03 23:55:22] {"access_token":"2.003MlvVFdrOBSBbd5c804b9bEa77FC","remind_in":"7787095","expires_in":7787095,"uid":"5052496706"}
0 INFO [2014-04-03 23:56:25] code: 30a537286d33ea6609750108605a78ee
129 DEBUG [2014-04-03 23:56:25] Request:
129 DEBUG [2014-04-03 23:56:25] POSThttps://api.weibo.com/oauth2/access_token
722 DEBUG [2014-04-03 23:56:26] Response:
722 DEBUG [2014-04-03 23:56:26] https StatusCode:200
722 DEBUG [2014-04-03 23:56:26] Server:nginx/1.2.0
722 DEBUG [2014-04-03 23:56:26] Date:Thu, 03 Apr 2014 15:56:11 GMT
722 DEBUG [2014-04-03 23:56:26] Content-Type:text/plain;charset=UTF-8
722 DEBUG [2014-04-03 23:56:26] Content-Length:113
722 DEBUG [2014-04-03 23:56:26] Connection:keep-alive
722 DEBUG [2014-04-03 23:56:26] Pragma:No-cache
722 DEBUG [2014-04-03 23:56:26] Cache-Control:no-cache
722 DEBUG [2014-04-03 23:56:26] Expires:Thu, 01 Jan 1970 00:00:00 GMT
722 DEBUG [2014-04-03 23:56:26] Api-Server-IP:10.73.89.48
725 DEBUG [2014-04-03 23:56:26] {"access_token":"2.00icVpVFdrOBSB3832e31e90uy4fZE","remind_in":"7787030","expires_in":7787030,"uid":"5051006868"}
0 INFO [2014-04-03 23:56:59] code: f2194d381142d3fb0682f189341b7ede
130 DEBUG [2014-04-03 23:56:59] Request:
130 DEBUG [2014-04-03 23:56:59] POSThttps://api.weibo.com/oauth2/access_token
652 DEBUG [2014-04-03 23:57:00] Response:
652 DEBUG [2014-04-03 23:57:00] https StatusCode:200
652 DEBUG [2014-04-03 23:57:00] Server:nginx/1.2.0
652 DEBUG [2014-04-03 23:57:00] Date:Thu, 03 Apr 2014 15:56:46 GMT
652 DEBUG [2014-04-03 23:57:00] Content-Type:text/plain;charset=UTF-8
652 DEBUG [2014-04-03 23:57:00] Content-Length:113
652 DEBUG [2014-04-03 23:57:00] Connection:keep-alive
652 DEBUG [2014-04-03 23:57:00] Pragma:No-cache
652 DEBUG [2014-04-03 23:57:00] Cache-Control:no-cache
652 DEBUG [2014-04-03 23:57:00] Expires:Thu, 01 Jan 1970 00:00:00 GMT
652 DEBUG [2014-04-03 23:57:00] Api-Server-IP:10.75.25.86
654 DEBUG [2014-04-03 23:57:00] {"access_token":"2.00GUOJWFdrOBSB353b24de190rONpu","remind_in":"7786994","expires_in":7786994,"uid":"5055707546"}
0 INFO [2014-04-03 23:57:38] code: 23ad28b353c1d578f9aac246fb9e8e68
124 DEBUG [2014-04-03 23:57:38] Request:
124 DEBUG [2014-04-03 23:57:38] POSThttps://api.weibo.com/oauth2/access_token
637 DEBUG [2014-04-03 23:57:39] Response:
637 DEBUG [2014-04-03 23:57:39] https StatusCode:200
637 DEBUG [2014-04-03 23:57:39] Server:nginx/1.2.0
637 DEBUG [2014-04-03 23:57:39] Date:Thu, 03 Apr 2014 15:57:24 GMT
637 DEBUG [2014-04-03 23:57:39] Content-Type:text/plain;charset=UTF-8
637 DEBUG [2014-04-03 23:57:39] Content-Length:113
637 DEBUG [2014-04-03 23:57:39] Connection:keep-alive
637 DEBUG [2014-04-03 23:57:39] Pragma:No-cache
637 DEBUG [2014-04-03 23:57:39] Cache-Control:no-cache
637 DEBUG [2014-04-03 23:57:39] Expires:Thu, 01 Jan 1970 00:00:00 GMT
637 DEBUG [2014-04-03 23:57:39] Api-Server-IP:10.75.25.115
640 DEBUG [2014-04-03 23:57:39] {"access_token":"2.00S4wHWFdrOBSB31ef2a687b0jDsTe","remind_in":"7786955","expires_in":7786955,"uid":"5055399604"}
0 INFO [2014-04-03 23:58:04] code: 789c0ce37c02030fbba62867450a66b8
135 DEBUG [2014-04-03 23:58:04] Request:
135 DEBUG [2014-04-03 23:58:04] POSThttps://api.weibo.com/oauth2/access_token
644 DEBUG [2014-04-03 23:58:04] Response:
644 DEBUG [2014-04-03 23:58:04] https StatusCode:200
644 DEBUG [2014-04-03 23:58:04] Server:nginx/1.2.0
644 DEBUG [2014-04-03 23:58:04] Date:Thu, 03 Apr 2014 15:57:50 GMT
644 DEBUG [2014-04-03 23:58:04] Content-Type:text/plain;charset=UTF-8
644 DEBUG [2014-04-03 23:58:04] Content-Length:113
644 DEBUG [2014-04-03 23:58:04] Connection:keep-alive
645 DEBUG [2014-04-03 23:58:04] Pragma:No-cache
645 DEBUG [2014-04-03 23:58:04] Cache-Control:no-cache
645 DEBUG [2014-04-03 23:58:04] Expires:Thu, 01 Jan 1970 00:00:00 GMT
645 DEBUG [2014-04-03 23:58:04] Api-Server-IP:10.73.89.46
647 DEBUG [2014-04-03 23:58:04] {"access_token":"2.003C5RWFdrOBSB732ecd4381va5kZE","remind_in":"7786932","expires_in":7786932,"uid":"5057650890"}
0 INFO [2014-04-03 23:58:30] code: 5841ae876954a2e2e6044efc35eee3fb
125 DEBUG [2014-04-03 23:58:31] Request:
125 DEBUG [2014-04-03 23:58:31] POSThttps://api.weibo.com/oauth2/access_token
639 DEBUG [2014-04-03 23:58:31] Response:
640 DEBUG [2014-04-03 23:58:31] https StatusCode:200
640 DEBUG [2014-04-03 23:58:31] Server:nginx/1.2.0
640 DEBUG [2014-04-03 23:58:31] Date:Thu, 03 Apr 2014 15:58:17 GMT
640 DEBUG [2014-04-03 23:58:31] Content-Type:text/plain;charset=UTF-8
640 DEBUG [2014-04-03 23:58:31] Content-Length:113
640 DEBUG [2014-04-03 23:58:31] Connection:keep-alive
640 DEBUG [2014-04-03 23:58:31] Pragma:No-cache
640 DEBUG [2014-04-03 23:58:31] Cache-Control:no-cache
640 DEBUG [2014-04-03 23:58:31] Expires:Thu, 01 Jan 1970 00:00:00 GMT
640 DEBUG [2014-04-03 23:58:31] Api-Server-IP:10.73.89.46
643 DEBUG [2014-04-03 23:58:31] {"access_token":"2.00GEQ1WFdrOBSB114d89bd20RDYz5D","remind_in":"7786905","expires_in":7786905,"uid":"5058335230"}
0 INFO [2014-04-03 23:59:04] code: 140a91da09f2c96e80720e6e632c5133
121 DEBUG [2014-04-03 23:59:04] Request:
121 DEBUG [2014-04-03 23:59:04] POSThttps://api.weibo.com/oauth2/access_token
625 DEBUG [2014-04-03 23:59:04] Response:
625 DEBUG [2014-04-03 23:59:04] https StatusCode:200
625 DEBUG [2014-04-03 23:59:04] Server:nginx/1.2.0
625 DEBUG [2014-04-03 23:59:04] Date:Thu, 03 Apr 2014 15:58:50 GMT
625 DEBUG [2014-04-03 23:59:04] Content-Type:text/plain;charset=UTF-8
625 DEBUG [2014-04-03 23:59:04] Content-Length:113
625 DEBUG [2014-04-03 23:59:04] Connection:keep-alive
625 DEBUG [2014-04-03 23:59:04] Pragma:No-cache
625 DEBUG [2014-04-03 23:59:04] Cache-Control:no-cache
625 DEBUG [2014-04-03 23:59:04] Expires:Thu, 01 Jan 1970 00:00:00 GMT
625 DEBUG [2014-04-03 23:59:04] Api-Server-IP:10.73.89.48
627 DEBUG [2014-04-03 23:59:04] {"access_token":"2.00NopRWFdrOBSB1e4334f17ebdwlxB","remind_in":"7786872","expires_in":7786872,"uid":"5057757645"}
0 INFO [2014-04-03 23:59:33] code: 937cb251579071e0c1f04be887255ba5
115 DEBUG [2014-04-03 23:59:33] Request:
115 DEBUG [2014-04-03 23:59:33] POSThttps://api.weibo.com/oauth2/access_token
647 DEBUG [2014-04-03 23:59:34] Response:
647 DEBUG [2014-04-03 23:59:34] https StatusCode:200
647 DEBUG [2014-04-03 23:59:34] Server:nginx/1.2.0
647 DEBUG [2014-04-03 23:59:34] Date:Thu, 03 Apr 2014 15:59:19 GMT
648 DEBUG [2014-04-03 23:59:34] Content-Type:text/plain;charset=UTF-8
648 DEBUG [2014-04-03 23:59:34] Content-Length:113
648 DEBUG [2014-04-03 23:59:34] Connection:keep-alive
648 DEBUG [2014-04-03 23:59:34] Pragma:No-cache
648 DEBUG [2014-04-03 23:59:34] Cache-Control:no-cache
648 DEBUG [2014-04-03 23:59:34] Expires:Thu, 01 Jan 1970 00:00:00 GMT
648 DEBUG [2014-04-03 23:59:34] Api-Server-IP:10.73.89.48
651 DEBUG [2014-04-03 23:59:34] {"access_token":"2.006Cd1WFdrOBSB9b066efb0bFodxbC","remind_in":"7786842","expires_in":7786842,"uid":"5058423537"}
0 INFO [2014-04-04 00:00:02] code: c605385f60a0f51436a859c97846c4f0
129 DEBUG [2014-04-04 00:00:02] Request:
129 DEBUG [2014-04-04 00:00:02] POSThttps://api.weibo.com/oauth2/access_token
652 DEBUG [2014-04-04 00:00:03] Response:
652 DEBUG [2014-04-04 00:00:03] https StatusCode:200
653 DEBUG [2014-04-04 00:00:03] Server:nginx/1.2.0
653 DEBUG [2014-04-04 00:00:03] Date:Thu, 03 Apr 2014 15:59:49 GMT
653 DEBUG [2014-04-04 00:00:03] Content-Type:text/plain;charset=UTF-8
653 DEBUG [2014-04-04 00:00:03] Content-Length:113
653 DEBUG [2014-04-04 00:00:03] Connection:keep-alive
653 DEBUG [2014-04-04 00:00:03] Pragma:No-cache
653 DEBUG [2014-04-04 00:00:03] Cache-Control:no-cache
653 DEBUG [2014-04-04 00:00:03] Expires:Thu, 01 Jan 1970 00:00:00 GMT
653 DEBUG [2014-04-04 00:00:03] Api-Server-IP:10.75.25.86
655 DEBUG [2014-04-04 00:00:03] {"access_token":"2.00AOqRWFdrOBSB8573f9cbba0sFmJB","remind_in":"7786811","expires_in":7786811,"uid":"5057759244"}
0 INFO [2014-04-04 00:00:32] code: 7bc3f46f5517feee610b293f94e7af9b
137 DEBUG [2014-04-04 00:00:32] Request:
137 DEBUG [2014-04-04 00:00:32] POSThttps://api.weibo.com/oauth2/access_token
638 DEBUG [2014-04-04 00:00:33] Response:
638 DEBUG [2014-04-04 00:00:33] https StatusCode:200
638 DEBUG [2014-04-04 00:00:33] Server:nginx/1.2.0
638 DEBUG [2014-04-04 00:00:33] Date:Thu, 03 Apr 2014 16:00:18 GMT
638 DEBUG [2014-04-04 00:00:33] Content-Type:text/plain;charset=UTF-8
638 DEBUG [2014-04-04 00:00:33] Content-Length:113
638 DEBUG [2014-04-04 00:00:33] Connection:keep-alive
638 DEBUG [2014-04-04 00:00:33] Pragma:No-cache
638 DEBUG [2014-04-04 00:00:33] Cache-Control:no-cache
638 DEBUG [2014-04-04 00:00:33] Expires:Thu, 01 Jan 1970 00:00:00 GMT
638 DEBUG [2014-04-04 00:00:33] Api-Server-IP:10.73.89.46
640 DEBUG [2014-04-04 00:00:33] {"access_token":"2.00v4YMWFdrOBSB01bab657b682apeD","remind_in":"7873183","expires_in":7873183,"uid":"5056499027"}
0 INFO [2014-04-04 00:02:33] code: 0e2aea7335aefa05e8366b68d9f8688e
121 DEBUG [2014-04-04 00:02:33] Request:
121 DEBUG [2014-04-04 00:02:33] POSThttps://api.weibo.com/oauth2/access_token
608 DEBUG [2014-04-04 00:02:34] Response:
608 DEBUG [2014-04-04 00:02:34] https StatusCode:200
608 DEBUG [2014-04-04 00:02:34] Server:nginx/1.2.0
608 DEBUG [2014-04-04 00:02:34] Date:Thu, 03 Apr 2014 16:02:19 GMT
608 DEBUG [2014-04-04 00:02:34] Content-Type:text/plain;charset=UTF-8
608 DEBUG [2014-04-04 00:02:34] Content-Length:113
608 DEBUG [2014-04-04 00:02:34] Connection:keep-alive
608 DEBUG [2014-04-04 00:02:34] Pragma:No-cache
608 DEBUG [2014-04-04 00:02:34] Cache-Control:no-cache
608 DEBUG [2014-04-04 00:02:34] Expires:Thu, 01 Jan 1970 00:00:00 GMT
608 DEBUG [2014-04-04 00:02:34] Api-Server-IP:10.75.2.83
610 DEBUG [2014-04-04 00:02:34] {"access_token":"2.00orwOWFdrOBSB82319fdbfd61UWrC","remind_in":"7873059","expires_in":7873059,"uid":"5057069792"}
0 INFO [2014-04-04 00:03:02] code: 9e0bdcd33972b01b300116aecbb84736
121 DEBUG [2014-04-04 00:03:02] Request:
121 DEBUG [2014-04-04 00:03:02] POSThttps://api.weibo.com/oauth2/access_token
625 DEBUG [2014-04-04 00:03:03] Response:
625 DEBUG [2014-04-04 00:03:03] https StatusCode:200
625 DEBUG [2014-04-04 00:03:03] Server:nginx/1.2.0
625 DEBUG [2014-04-04 00:03:03] Date:Thu, 03 Apr 2014 16:02:48 GMT
625 DEBUG [2014-04-04 00:03:03] Content-Type:text/plain;charset=UTF-8
625 DEBUG [2014-04-04 00:03:03] Content-Length:113
626 DEBUG [2014-04-04 00:03:03] Connection:keep-alive
626 DEBUG [2014-04-04 00:03:03] Pragma:No-cache
626 DEBUG [2014-04-04 00:03:03] Cache-Control:no-cache
626 DEBUG [2014-04-04 00:03:03] Expires:Thu, 01 Jan 1970 00:00:00 GMT
626 DEBUG [2014-04-04 00:03:03] Api-Server-IP:10.75.2.82
628 DEBUG [2014-04-04 00:03:03] {"access_token":"2.007rd1WFdrOBSBa61107e4f0DWRHKE","remind_in":"7873031","expires_in":7873031,"uid":"5058426700"}
0 INFO [2014-04-04 00:03:30] code: 91934d2f6424312591a89d9520557751
135 DEBUG [2014-04-04 00:03:30] Request:
135 DEBUG [2014-04-04 00:03:30] POSThttps://api.weibo.com/oauth2/access_token
625 DEBUG [2014-04-04 00:03:30] Response:
625 DEBUG [2014-04-04 00:03:30] https StatusCode:200
625 DEBUG [2014-04-04 00:03:30] Server:nginx/1.2.0
625 DEBUG [2014-04-04 00:03:30] Date:Thu, 03 Apr 2014 16:03:16 GMT
625 DEBUG [2014-04-04 00:03:30] Content-Type:text/plain;charset=UTF-8
625 DEBUG [2014-04-04 00:03:30] Content-Length:113
625 DEBUG [2014-04-04 00:03:30] Connection:keep-alive
625 DEBUG [2014-04-04 00:03:30] Pragma:No-cache
625 DEBUG [2014-04-04 00:03:30] Cache-Control:no-cache
625 DEBUG [2014-04-04 00:03:30] Expires:Thu, 01 Jan 1970 00:00:00 GMT
625 DEBUG [2014-04-04 00:03:30] Api-Server-IP:10.75.25.86
627 DEBUG [2014-04-04 00:03:30] {"access_token":"2.00MrZMWFdrOBSB9459d7b78cdixYMB","remind_in":"7873004","expires_in":7873004,"uid":"5056504686"}
0 INFO [2014-04-04 00:04:00] code: f62ad9b504dfa43415e9ae9eac9e12f1
116 DEBUG [2014-04-04 00:04:00] Request:
116 DEBUG [2014-04-04 00:04:00] POSThttps://api.weibo.com/oauth2/access_token
638 DEBUG [2014-04-04 00:04:01] Response:
638 DEBUG [2014-04-04 00:04:01] https StatusCode:200
638 DEBUG [2014-04-04 00:04:01] Server:nginx/1.2.0
638 DEBUG [2014-04-04 00:04:01] Date:Thu, 03 Apr 2014 16:03:46 GMT
638 DEBUG [2014-04-04 00:04:01] Content-Type:text/plain;charset=UTF-8
638 DEBUG [2014-04-04 00:04:01] Content-Length:113
639 DEBUG [2014-04-04 00:04:01] Connection:keep-alive
639 DEBUG [2014-04-04 00:04:01] Pragma:No-cache
639 DEBUG [2014-04-04 00:04:01] Cache-Control:no-cache
639 DEBUG [2014-04-04 00:04:01] Expires:Thu, 01 Jan 1970 00:00:00 GMT
639 DEBUG [2014-04-04 00:04:01] Api-Server-IP:10.75.25.115
643 DEBUG [2014-04-04 00:04:01] {"access_token":"2.00RSaMWFdrOBSB27f171f1be0Xzj_N","remind_in":"7872973","expires_in":7872973,"uid":"5056506365"}
0 INFO [2014-04-04 00:04:34] code: 1349898e6c7b30371d93021eb01e0413
114 DEBUG [2014-04-04 00:04:34] Request:
114 DEBUG [2014-04-04 00:04:34] POSThttps://api.weibo.com/oauth2/access_token
600 DEBUG [2014-04-04 00:04:34] Response:
600 DEBUG [2014-04-04 00:04:34] https StatusCode:200
600 DEBUG [2014-04-04 00:04:34] Server:nginx/1.2.0
601 DEBUG [2014-04-04 00:04:34] Date:Thu, 03 Apr 2014 16:04:20 GMT
601 DEBUG [2014-04-04 00:04:34] Content-Type:text/plain;charset=UTF-8
601 DEBUG [2014-04-04 00:04:34] Content-Length:113
601 DEBUG [2014-04-04 00:04:34] Connection:keep-alive
601 DEBUG [2014-04-04 00:04:34] Pragma:No-cache
601 DEBUG [2014-04-04 00:04:34] Cache-Control:no-cache
601 DEBUG [2014-04-04 00:04:34] Expires:Thu, 01 Jan 1970 00:00:00 GMT
601 DEBUG [2014-04-04 00:04:34] Api-Server-IP:10.75.25.86
603 DEBUG [2014-04-04 00:04:34] {"access_token":"2.003tf1WFdrOBSB0b023842afliUmaE","remind_in":"7872940","expires_in":7872940,"uid":"5058434508"}
0 INFO [2014-04-04 00:04:58] code: c430c9db3c57ca0e31b4ac1b5a8be9da
118 DEBUG [2014-04-04 00:04:58] Request:
118 DEBUG [2014-04-04 00:04:58] POSThttps://api.weibo.com/oauth2/access_token
641 DEBUG [2014-04-04 00:04:59] Response:
641 DEBUG [2014-04-04 00:04:59] https StatusCode:200
641 DEBUG [2014-04-04 00:04:59] Server:nginx/1.2.0
641 DEBUG [2014-04-04 00:04:59] Date:Thu, 03 Apr 2014 16:04:44 GMT
641 DEBUG [2014-04-04 00:04:59] Content-Type:text/plain;charset=UTF-8
641 DEBUG [2014-04-04 00:04:59] Content-Length:113
641 DEBUG [2014-04-04 00:04:59] Connection:keep-alive
641 DEBUG [2014-04-04 00:04:59] Pragma:No-cache
641 DEBUG [2014-04-04 00:04:59] Cache-Control:no-cache
641 DEBUG [2014-04-04 00:04:59] Expires:Thu, 01 Jan 1970 00:00:00 GMT
641 DEBUG [2014-04-04 00:04:59] Api-Server-IP:10.75.25.115
643 DEBUG [2014-04-04 00:04:59] {"access_token":"2.00tRX3WFdrOBSBaae5a3504bynL_EC","remind_in":"7872915","expires_in":7872915,"uid":"5058878089"}
0 INFO [2014-04-04 00:05:21] code: 8acdce7249c05526a19f05b772e5c3cc
131 DEBUG [2014-04-04 00:05:21] Request:
131 DEBUG [2014-04-04 00:05:21] POSThttps://api.weibo.com/oauth2/access_token
634 DEBUG [2014-04-04 00:05:22] Response:
635 DEBUG [2014-04-04 00:05:22] https StatusCode:200
635 DEBUG [2014-04-04 00:05:22] Server:nginx/1.2.0
635 DEBUG [2014-04-04 00:05:22] Date:Thu, 03 Apr 2014 16:05:07 GMT
635 DEBUG [2014-04-04 00:05:22] Content-Type:text/plain;charset=UTF-8
635 DEBUG [2014-04-04 00:05:22] Content-Length:113
635 DEBUG [2014-04-04 00:05:22] Connection:keep-alive
635 DEBUG [2014-04-04 00:05:22] Pragma:No-cache
635 DEBUG [2014-04-04 00:05:22] Cache-Control:no-cache
635 DEBUG [2014-04-04 00:05:22] Expires:Thu, 01 Jan 1970 00:00:00 GMT
635 DEBUG [2014-04-04 00:05:22] Api-Server-IP:10.75.2.82
637 DEBUG [2014-04-04 00:05:22] {"access_token":"2.00gW6OWFdrOBSBb270f2ab035yu2CB","remind_in":"7872892","expires_in":7872892,"uid":"5056941630"}
0 INFO [2014-04-04 00:05:45] code: 3c8280698f03d89310c3316caff4ea2d
152 DEBUG [2014-04-04 00:05:45] Request:
152 DEBUG [2014-04-04 00:05:45] POSThttps://api.weibo.com/oauth2/access_token
774 DEBUG [2014-04-04 00:05:46] Response:
774 DEBUG [2014-04-04 00:05:46] https StatusCode:200
774 DEBUG [2014-04-04 00:05:46] Server:nginx/1.2.0
774 DEBUG [2014-04-04 00:05:46] Date:Thu, 03 Apr 2014 16:05:32 GMT
774 DEBUG [2014-04-04 00:05:46] Content-Type:text/plain;charset=UTF-8
774 DEBUG [2014-04-04 00:05:46] Content-Length:113
774 DEBUG [2014-04-04 00:05:46] Connection:keep-alive
775 DEBUG [2014-04-04 00:05:46] Pragma:No-cache
775 DEBUG [2014-04-04 00:05:46] Cache-Control:no-cache
775 DEBUG [2014-04-04 00:05:46] Expires:Thu, 01 Jan 1970 00:00:00 GMT
775 DEBUG [2014-04-04 00:05:46] Api-Server-IP:10.75.2.83
778 DEBUG [2014-04-04 00:05:46] {"access_token":"2.00oDoQWFdrOBSB3c6d3fb49902mOk6","remind_in":"7872867","expires_in":7872867,"uid":"5057512596"}
0 INFO [2014-04-04 00:06:10] code: 3d2c6181331f7f42e9df4a636e7ccf82
116 DEBUG [2014-04-04 00:06:10] Request:
117 DEBUG [2014-04-04 00:06:10] POSThttps://api.weibo.com/oauth2/access_token
632 DEBUG [2014-04-04 00:06:10] Response:
632 DEBUG [2014-04-04 00:06:10] https StatusCode:200
632 DEBUG [2014-04-04 00:06:10] Server:nginx/1.2.0
632 DEBUG [2014-04-04 00:06:10] Date:Thu, 03 Apr 2014 16:05:56 GMT
632 DEBUG [2014-04-04 00:06:10] Content-Type:text/plain;charset=UTF-8
632 DEBUG [2014-04-04 00:06:10] Content-Length:113
632 DEBUG [2014-04-04 00:06:10] Connection:keep-alive
632 DEBUG [2014-04-04 00:06:10] Pragma:No-cache
632 DEBUG [2014-04-04 00:06:10] Cache-Control:no-cache
632 DEBUG [2014-04-04 00:06:10] Expires:Thu, 01 Jan 1970 00:00:00 GMT
633 DEBUG [2014-04-04 00:06:10] Api-Server-IP:10.73.89.48
635 DEBUG [2014-04-04 00:06:10] {"access_token":"2.00sPl_WFdrOBSBbcce4fbb9fFTcLHE","remind_in":"7872846","expires_in":7872846,"uid":"5058216796"}
0 INFO [2014-04-04 00:06:40] code: d84714a6046497d8bc1e773726107fce
120 DEBUG [2014-04-04 00:06:40] Request:
120 DEBUG [2014-04-04 00:06:40] POSThttps://api.weibo.com/oauth2/access_token
632 DEBUG [2014-04-04 00:06:41] Response:
632 DEBUG [2014-04-04 00:06:41] https StatusCode:200
632 DEBUG [2014-04-04 00:06:41] Server:nginx/1.2.0
632 DEBUG [2014-04-04 00:06:41] Date:Thu, 03 Apr 2014 16:06:26 GMT
632 DEBUG [2014-04-04 00:06:41] Content-Type:text/plain;charset=UTF-8
632 DEBUG [2014-04-04 00:06:41] Content-Length:113
632 DEBUG [2014-04-04 00:06:41] Connection:keep-alive
632 DEBUG [2014-04-04 00:06:41] Pragma:No-cache
632 DEBUG [2014-04-04 00:06:41] Cache-Control:no-cache
632 DEBUG [2014-04-04 00:06:41] Expires:Thu, 01 Jan 1970 00:00:00 GMT
632 DEBUG [2014-04-04 00:06:41] Api-Server-IP:10.73.89.46
634 DEBUG [2014-04-04 00:06:41] {"access_token":"2.002mY3WFdrOBSB51cef3c30eY3NoJD","remind_in":"7872815","expires_in":7872815,"uid":"5058883821"}
0 INFO [2014-04-04 00:07:07] code: 657a5bb6473841ae3c40f599a809fb4c
122 DEBUG [2014-04-04 00:07:07] Request:
122 DEBUG [2014-04-04 00:07:07] POSThttps://api.weibo.com/oauth2/access_token
636 DEBUG [2014-04-04 00:07:07] Response:
636 DEBUG [2014-04-04 00:07:07] https StatusCode:200
636 DEBUG [2014-04-04 00:07:07] Server:nginx/1.2.0
636 DEBUG [2014-04-04 00:07:07] Date:Thu, 03 Apr 2014 16:06:53 GMT
636 DEBUG [2014-04-04 00:07:07] Content-Type:text/plain;charset=UTF-8
636 DEBUG [2014-04-04 00:07:07] Content-Length:113
636 DEBUG [2014-04-04 00:07:07] Connection:keep-alive
636 DEBUG [2014-04-04 00:07:07] Pragma:No-cache
636 DEBUG [2014-04-04 00:07:07] Cache-Control:no-cache
636 DEBUG [2014-04-04 00:07:07] Expires:Thu, 01 Jan 1970 00:00:00 GMT
636 DEBUG [2014-04-04 00:07:07] Api-Server-IP:10.73.89.48
638 DEBUG [2014-04-04 00:07:07] {"access_token":"2.00Uxl_WFdrOBSB91f9d7666c0GJh3f","remind_in":"7872789","expires_in":7872789,"uid":"5058219500"}
0 INFO [2014-04-04 00:07:39] code: bd9526b53fd26a3bc0d9120b9e268c27
131 DEBUG [2014-04-04 00:07:39] Request:
131 DEBUG [2014-04-04 00:07:39] POSThttps://api.weibo.com/oauth2/access_token
630 DEBUG [2014-04-04 00:07:39] Response:
630 DEBUG [2014-04-04 00:07:39] https StatusCode:200
630 DEBUG [2014-04-04 00:07:39] Server:nginx/1.2.0
630 DEBUG [2014-04-04 00:07:39] Date:Thu, 03 Apr 2014 16:07:25 GMT
630 DEBUG [2014-04-04 00:07:39] Content-Type:text/plain;charset=UTF-8
630 DEBUG [2014-04-04 00:07:39] Content-Length:113
630 DEBUG [2014-04-04 00:07:39] Connection:keep-alive
631 DEBUG [2014-04-04 00:07:39] Pragma:No-cache
631 DEBUG [2014-04-04 00:07:39] Cache-Control:no-cache
631 DEBUG [2014-04-04 00:07:39] Expires:Thu, 01 Jan 1970 00:00:00 GMT
631 DEBUG [2014-04-04 00:07:39] Api-Server-IP:10.75.2.82
633 DEBUG [2014-04-04 00:07:39] {"access_token":"2.00KWZ3WFdrOBSB20ae93357474YXLC","remind_in":"7872755","expires_in":7872755,"uid":"5058886662"}
0 INFO [2014-04-04 00:08:04] code: 16b0190323cf02be9a24eed14ae62ee9
143 DEBUG [2014-04-04 00:08:04] Request:
143 DEBUG [2014-04-04 00:08:04] POSThttps://api.weibo.com/oauth2/access_token
694 DEBUG [2014-04-04 00:08:05] Response:
694 DEBUG [2014-04-04 00:08:05] https StatusCode:200
695 DEBUG [2014-04-04 00:08:05] Server:nginx/1.2.0
695 DEBUG [2014-04-04 00:08:05] Date:Thu, 03 Apr 2014 16:07:50 GMT
695 DEBUG [2014-04-04 00:08:05] Content-Type:text/plain;charset=UTF-8
695 DEBUG [2014-04-04 00:08:05] Content-Length:113
695 DEBUG [2014-04-04 00:08:05] Connection:keep-alive
695 DEBUG [2014-04-04 00:08:05] Pragma:No-cache
695 DEBUG [2014-04-04 00:08:05] Cache-Control:no-cache
695 DEBUG [2014-04-04 00:08:05] Expires:Thu, 01 Jan 1970 00:00:00 GMT
695 DEBUG [2014-04-04 00:08:05] Api-Server-IP:10.75.25.114
697 DEBUG [2014-04-04 00:08:05] {"access_token":"2.00dmpQWFdrOBSB3310195c0fgvB8LE","remind_in":"7872728","expires_in":7872728,"uid":"5057519219"}
0 INFO [2014-04-04 00:08:32] code: 0824f8b7d977c28fe9b2028f136e7ef6
119 DEBUG [2014-04-04 00:08:32] Request:
119 DEBUG [2014-04-04 00:08:32] POSThttps://api.weibo.com/oauth2/access_token
624 DEBUG [2014-04-04 00:08:32] Response:
624 DEBUG [2014-04-04 00:08:32] https StatusCode:200
624 DEBUG [2014-04-04 00:08:32] Server:nginx/1.2.0
625 DEBUG [2014-04-04 00:08:32] Date:Thu, 03 Apr 2014 16:08:18 GMT
625 DEBUG [2014-04-04 00:08:32] Content-Type:text/plain;charset=UTF-8
625 DEBUG [2014-04-04 00:08:32] Content-Length:113
625 DEBUG [2014-04-04 00:08:32] Connection:keep-alive
625 DEBUG [2014-04-04 00:08:32] Pragma:No-cache
625 DEBUG [2014-04-04 00:08:32] Cache-Control:no-cache
625 DEBUG [2014-04-04 00:08:32] Expires:Thu, 01 Jan 1970 00:00:00 GMT
625 DEBUG [2014-04-04 00:08:32] Api-Server-IP:10.75.25.115
627 DEBUG [2014-04-04 00:08:32] {"access_token":"2.00DX9OWFdrOBSB72553c92a90cAjz8","remind_in":"7872701","expires_in":7872701,"uid":"5056953185"}
0 INFO [2014-04-04 00:08:56] code: a8f3df62a2bcd4309c3e996a3f620646
125 DEBUG [2014-04-04 00:08:56] Request:
125 DEBUG [2014-04-04 00:08:56] POSThttps://api.weibo.com/oauth2/access_token
637 DEBUG [2014-04-04 00:08:56] Response:
638 DEBUG [2014-04-04 00:08:56] https StatusCode:200
638 DEBUG [2014-04-04 00:08:56] Server:nginx/1.2.0
638 DEBUG [2014-04-04 00:08:56] Date:Thu, 03 Apr 2014 16:08:42 GMT
638 DEBUG [2014-04-04 00:08:56] Content-Type:text/plain;charset=UTF-8
638 DEBUG [2014-04-04 00:08:56] Content-Length:113
638 DEBUG [2014-04-04 00:08:56] Connection:keep-alive
638 DEBUG [2014-04-04 00:08:56] Pragma:No-cache
638 DEBUG [2014-04-04 00:08:56] Cache-Control:no-cache
638 DEBUG [2014-04-04 00:08:56] Expires:Thu, 01 Jan 1970 00:00:00 GMT
638 DEBUG [2014-04-04 00:08:56] Api-Server-IP:10.73.89.47
640 DEBUG [2014-04-04 00:08:56] {"access_token":"2.002JAXWFdrOBSB6f0d81e8770xmYua","remind_in":"7872681","expires_in":7872681,"uid":"5061372315"}
0 INFO [2014-04-04 00:09:23] code: aee1b1456d3618b45eac3c9a3a2060e0
133 DEBUG [2014-04-04 00:09:24] Request:
133 DEBUG [2014-04-04 00:09:24] POSThttps://api.weibo.com/oauth2/access_token
706 DEBUG [2014-04-04 00:09:24] Response:
706 DEBUG [2014-04-04 00:09:24] https StatusCode:200
707 DEBUG [2014-04-04 00:09:24] Server:nginx/1.2.0
707 DEBUG [2014-04-04 00:09:24] Date:Thu, 03 Apr 2014 16:09:10 GMT
707 DEBUG [2014-04-04 00:09:24] Content-Type:text/plain;charset=UTF-8
707 DEBUG [2014-04-04 00:09:24] Content-Length:113
707 DEBUG [2014-04-04 00:09:24] Connection:keep-alive
707 DEBUG [2014-04-04 00:09:24] Pragma:No-cache
707 DEBUG [2014-04-04 00:09:24] Cache-Control:no-cache
707 DEBUG [2014-04-04 00:09:24] Expires:Thu, 01 Jan 1970 00:00:00 GMT
707 DEBUG [2014-04-04 00:09:24] Api-Server-IP:10.75.2.82
709 DEBUG [2014-04-04 00:09:24] {"access_token":"2.00lB2UWFdrOBSB3f8e5cf575B3sa3D","remind_in":"7872650","expires_in":7872650,"uid":"5060737585"}
0 INFO [2014-04-04 00:09:47] code: 539b9b76feaaeaa17f42134fc97cee05
124 DEBUG [2014-04-04 00:09:47] Request:
124 DEBUG [2014-04-04 00:09:47] POSThttps://api.weibo.com/oauth2/access_token
732 DEBUG [2014-04-04 00:09:47] Response:
732 DEBUG [2014-04-04 00:09:47] https StatusCode:200
732 DEBUG [2014-04-04 00:09:47] Server:nginx/1.2.0
732 DEBUG [2014-04-04 00:09:47] Date:Thu, 03 Apr 2014 16:09:33 GMT
732 DEBUG [2014-04-04 00:09:47] Content-Type:text/plain;charset=UTF-8
732 DEBUG [2014-04-04 00:09:47] Content-Length:113
732 DEBUG [2014-04-04 00:09:47] Connection:keep-alive
732 DEBUG [2014-04-04 00:09:47] Pragma:No-cache
732 DEBUG [2014-04-04 00:09:47] Cache-Control:no-cache
732 DEBUG [2014-04-04 00:09:47] Expires:Thu, 01 Jan 1970 00:00:00 GMT
733 DEBUG [2014-04-04 00:09:47] Api-Server-IP:10.73.89.47
735 DEBUG [2014-04-04 00:09:47] {"access_token":"2.00x_MTWFdrOBSBdc7f4e5bdbOS2KQB","remind_in":"7872630","expires_in":7872630,"uid":"5060465789"}
0 INFO [2014-04-04 00:10:11] code: bf562b455badf3e2d62b5f10df9825a6
119 DEBUG [2014-04-04 00:10:11] Request:
119 DEBUG [2014-04-04 00:10:11] POSThttps://api.weibo.com/oauth2/access_token
624 DEBUG [2014-04-04 00:10:12] Response:
624 DEBUG [2014-04-04 00:10:12] https StatusCode:200
624 DEBUG [2014-04-04 00:10:12] Server:nginx/1.2.0
624 DEBUG [2014-04-04 00:10:12] Date:Thu, 03 Apr 2014 16:09:57 GMT
624 DEBUG [2014-04-04 00:10:12] Content-Type:text/plain;charset=UTF-8
624 DEBUG [2014-04-04 00:10:12] Content-Length:113
624 DEBUG [2014-04-04 00:10:12] Connection:keep-alive
624 DEBUG [2014-04-04 00:10:12] Pragma:No-cache
624 DEBUG [2014-04-04 00:10:12] Cache-Control:no-cache
624 DEBUG [2014-04-04 00:10:12] Expires:Thu, 01 Jan 1970 00:00:00 GMT
624 DEBUG [2014-04-04 00:10:12] Api-Server-IP:10.75.25.114
626 DEBUG [2014-04-04 00:10:12] {"access_token":"2.00v2BXWFdrOBSB0552f1f0ac0SYJev","remind_in":"7872602","expires_in":7872602,"uid":"5061376939"}
0 INFO [2014-04-04 00:10:49] code: 0c635b1742fba7a969d1915cb5510f5b
115 DEBUG [2014-04-04 00:10:49] Request:
115 DEBUG [2014-04-04 00:10:49] POSThttps://api.weibo.com/oauth2/access_token
662 DEBUG [2014-04-04 00:10:50] Response:
662 DEBUG [2014-04-04 00:10:50] https StatusCode:200
662 DEBUG [2014-04-04 00:10:50] Server:nginx/1.2.0
662 DEBUG [2014-04-04 00:10:50] Date:Thu, 03 Apr 2014 16:10:35 GMT
662 DEBUG [2014-04-04 00:10:50] Content-Type:text/plain;charset=UTF-8
662 DEBUG [2014-04-04 00:10:50] Content-Length:113
662 DEBUG [2014-04-04 00:10:50] Connection:keep-alive
662 DEBUG [2014-04-04 00:10:50] Pragma:No-cache
662 DEBUG [2014-04-04 00:10:50] Cache-Control:no-cache
662 DEBUG [2014-04-04 00:10:50] Expires:Thu, 01 Jan 1970 00:00:00 GMT
663 DEBUG [2014-04-04 00:10:50] Api-Server-IP:10.75.25.115
665 DEBUG [2014-04-04 00:10:50] {"access_token":"2.00KlBXWFdrOBSB960d0fe530vU5dfD","remind_in":"7872564","expires_in":7872564,"uid":"5061378504"}
0 INFO [2014-04-04 00:11:15] code: ffdb8dbc6673e7311f3a7c001c13071e
114 DEBUG [2014-04-04 00:11:15] Request:
114 DEBUG [2014-04-04 00:11:15] POSThttps://api.weibo.com/oauth2/access_token
628 DEBUG [2014-04-04 00:11:15] Response:
628 DEBUG [2014-04-04 00:11:15] https StatusCode:200
628 DEBUG [2014-04-04 00:11:15] Server:nginx/1.2.0
628 DEBUG [2014-04-04 00:11:15] Date:Thu, 03 Apr 2014 16:11:01 GMT
628 DEBUG [2014-04-04 00:11:15] Content-Type:text/plain;charset=UTF-8
628 DEBUG [2014-04-04 00:11:15] Content-Length:113
629 DEBUG [2014-04-04 00:11:15] Connection:keep-alive
629 DEBUG [2014-04-04 00:11:15] Pragma:No-cache
629 DEBUG [2014-04-04 00:11:15] Cache-Control:no-cache
629 DEBUG [2014-04-04 00:11:15] Expires:Thu, 01 Jan 1970 00:00:00 GMT
629 DEBUG [2014-04-04 00:11:15] Api-Server-IP:10.75.25.115
631 DEBUG [2014-04-04 00:11:15] {"access_token":"2.00tQqVWFdrOBSB48b5cb2015fZ5gmD","remind_in":"7872538","expires_in":7872538,"uid":"5061096015"}
0 INFO [2014-04-04 00:11:43] code: 41cb629411467c602273f1a38a76fafb
118 DEBUG [2014-04-04 00:11:43] Request:
118 DEBUG [2014-04-04 00:11:43] POSThttps://api.weibo.com/oauth2/access_token
612 DEBUG [2014-04-04 00:11:44] Response:
612 DEBUG [2014-04-04 00:11:44] https StatusCode:200
612 DEBUG [2014-04-04 00:11:44] Server:nginx/1.2.0
612 DEBUG [2014-04-04 00:11:44] Date:Thu, 03 Apr 2014 16:11:29 GMT
612 DEBUG [2014-04-04 00:11:44] Content-Type:text/plain;charset=UTF-8
612 DEBUG [2014-04-04 00:11:44] Content-Length:113
612 DEBUG [2014-04-04 00:11:44] Connection:keep-alive
612 DEBUG [2014-04-04 00:11:44] Pragma:No-cache
613 DEBUG [2014-04-04 00:11:44] Cache-Control:no-cache
613 DEBUG [2014-04-04 00:11:44] Expires:Thu, 01 Jan 1970 00:00:00 GMT
613 DEBUG [2014-04-04 00:11:44] Api-Server-IP:10.73.89.47
614 DEBUG [2014-04-04 00:11:44] {"access_token":"2.00HI4UWFdrOBSBa404a80882KiKS9E","remind_in":"7872513","expires_in":7872513,"uid":"5060745667"}
0 INFO [2014-04-04 00:12:10] code: 8d55a8eb9e7ca537e5246bf7ed6764a1
110 DEBUG [2014-04-04 00:12:10] Request:
110 DEBUG [2014-04-04 00:12:10] POSThttps://api.weibo.com/oauth2/access_token
607 DEBUG [2014-04-04 00:12:11] Response:
607 DEBUG [2014-04-04 00:12:11] https StatusCode:200
607 DEBUG [2014-04-04 00:12:11] Server:nginx/1.2.0
607 DEBUG [2014-04-04 00:12:11] Date:Thu, 03 Apr 2014 16:11:56 GMT
607 DEBUG [2014-04-04 00:12:11] Content-Type:text/plain;charset=UTF-8
607 DEBUG [2014-04-04 00:12:11] Content-Length:113
607 DEBUG [2014-04-04 00:12:11] Connection:keep-alive
607 DEBUG [2014-04-04 00:12:11] Pragma:No-cache
608 DEBUG [2014-04-04 00:12:11] Cache-Control:no-cache
608 DEBUG [2014-04-04 00:12:11] Expires:Thu, 01 Jan 1970 00:00:00 GMT
608 DEBUG [2014-04-04 00:12:11] Api-Server-IP:10.73.89.48
610 DEBUG [2014-04-04 00:12:11] {"access_token":"2.00G94UWFdrOBSB416f97a5e00x8bxX","remind_in":"7872485","expires_in":7872485,"uid":"5060746906"}
0 INFO [2014-04-04 00:12:37] code: 0e7d548292273604d2527e4fd6756b86
112 DEBUG [2014-04-04 00:12:37] Request:
112 DEBUG [2014-04-04 00:12:37] POSThttps://api.weibo.com/oauth2/access_token
613 DEBUG [2014-04-04 00:12:38] Response:
613 DEBUG [2014-04-04 00:12:38] https StatusCode:200
614 DEBUG [2014-04-04 00:12:38] Server:nginx/1.2.0
614 DEBUG [2014-04-04 00:12:38] Date:Thu, 03 Apr 2014 16:12:23 GMT
614 DEBUG [2014-04-04 00:12:38] Content-Type:text/plain;charset=UTF-8
614 DEBUG [2014-04-04 00:12:38] Content-Length:113
614 DEBUG [2014-04-04 00:12:38] Connection:keep-alive
614 DEBUG [2014-04-04 00:12:38] Pragma:No-cache
614 DEBUG [2014-04-04 00:12:38] Cache-Control:no-cache
614 DEBUG [2014-04-04 00:12:38] Expires:Thu, 01 Jan 1970 00:00:00 GMT
614 DEBUG [2014-04-04 00:12:38] Api-Server-IP:10.75.25.115
616 DEBUG [2014-04-04 00:12:38] {"access_token":"2.00daDXWFdrOBSB987673590ek4DdKB","remind_in":"7872456","expires_in":7872456,"uid":"5061385539"}
0 INFO [2014-04-04 00:13:02] code: 83721454cfbcfbcfe82da9d908044be3
115 DEBUG [2014-04-04 00:13:02] Request:
115 DEBUG [2014-04-04 00:13:02] POSThttps://api.weibo.com/oauth2/access_token
607 DEBUG [2014-04-04 00:13:03] Response:
607 DEBUG [2014-04-04 00:13:03] https StatusCode:200
607 DEBUG [2014-04-04 00:13:03] Server:nginx/1.2.0
607 DEBUG [2014-04-04 00:13:03] Date:Thu, 03 Apr 2014 16:12:48 GMT
607 DEBUG [2014-04-04 00:13:03] Content-Type:text/plain;charset=UTF-8
607 DEBUG [2014-04-04 00:13:03] Content-Length:113
607 DEBUG [2014-04-04 00:13:03] Connection:keep-alive
608 DEBUG [2014-04-04 00:13:03] Pragma:No-cache
608 DEBUG [2014-04-04 00:13:03] Cache-Control:no-cache
608 DEBUG [2014-04-04 00:13:03] Expires:Thu, 01 Jan 1970 00:00:00 GMT
608 DEBUG [2014-04-04 00:13:03] Api-Server-IP:10.75.25.86
610 DEBUG [2014-04-04 00:13:03] {"access_token":"2.00425UWFdrOBSBb4ac0a13550e_X39","remind_in":"7872432","expires_in":7872432,"uid":"5060750333"}
0 INFO [2014-04-04 00:13:27] code: 44529daa151ea95a288e9fe5aeefeecd
116 DEBUG [2014-04-04 00:13:27] Request:
116 DEBUG [2014-04-04 00:13:27] POSThttps://api.weibo.com/oauth2/access_token
627 DEBUG [2014-04-04 00:13:28] Response:
627 DEBUG [2014-04-04 00:13:28] https StatusCode:200
627 DEBUG [2014-04-04 00:13:28] Server:nginx/1.2.0
627 DEBUG [2014-04-04 00:13:28] Date:Thu, 03 Apr 2014 16:13:13 GMT
627 DEBUG [2014-04-04 00:13:28] Content-Type:text/plain;charset=UTF-8
627 DEBUG [2014-04-04 00:13:28] Content-Length:113
627 DEBUG [2014-04-04 00:13:28] Connection:keep-alive
627 DEBUG [2014-04-04 00:13:28] Pragma:No-cache
627 DEBUG [2014-04-04 00:13:28] Cache-Control:no-cache
627 DEBUG [2014-04-04 00:13:28] Expires:Thu, 01 Jan 1970 00:00:00 GMT
627 DEBUG [2014-04-04 00:13:28] Api-Server-IP:10.75.25.114
629 DEBUG [2014-04-04 00:13:28] {"access_token":"2.00lm5UWFdrOBSB02fabc02530TKKop","remind_in":"7872406","expires_in":7872406,"uid":"5060752031"}
0 INFO [2014-04-04 00:13:49] code: c21d02aaa6f7a042244e6eca57d4543b
136 DEBUG [2014-04-04 00:13:50] Request:
136 DEBUG [2014-04-04 00:13:50] POSThttps://api.weibo.com/oauth2/access_token
620 DEBUG [2014-04-04 00:13:50] Response:
620 DEBUG [2014-04-04 00:13:50] https StatusCode:200
620 DEBUG [2014-04-04 00:13:50] Server:nginx/1.2.0
620 DEBUG [2014-04-04 00:13:50] Date:Thu, 03 Apr 2014 16:13:36 GMT
620 DEBUG [2014-04-04 00:13:50] Content-Type:text/plain;charset=UTF-8
620 DEBUG [2014-04-04 00:13:50] Content-Length:113
620 DEBUG [2014-04-04 00:13:50] Connection:keep-alive
620 DEBUG [2014-04-04 00:13:50] Pragma:No-cache
620 DEBUG [2014-04-04 00:13:50] Cache-Control:no-cache
620 DEBUG [2014-04-04 00:13:50] Expires:Thu, 01 Jan 1970 00:00:00 GMT
620 DEBUG [2014-04-04 00:13:50] Api-Server-IP:10.75.25.86
622 DEBUG [2014-04-04 00:13:50] {"access_token":"2.00wgvYWFdrOBSBeea17153585Dby9C","remind_in":"7872384","expires_in":7872384,"uid":"5061831834"}
0 INFO [2014-04-04 00:14:14] code: 5876ac4ed1cb6a2599fe819b62d40a33
134 DEBUG [2014-04-04 00:14:14] Request:
134 DEBUG [2014-04-04 00:14:14] POSThttps://api.weibo.com/oauth2/access_token
856 DEBUG [2014-04-04 00:14:15] Response:
856 DEBUG [2014-04-04 00:14:15] https StatusCode:200
856 DEBUG [2014-04-04 00:14:15] Server:nginx/1.2.0
856 DEBUG [2014-04-04 00:14:15] Date:Thu, 03 Apr 2014 16:14:01 GMT
856 DEBUG [2014-04-04 00:14:15] Content-Type:text/plain;charset=UTF-8
856 DEBUG [2014-04-04 00:14:15] Content-Length:113
856 DEBUG [2014-04-04 00:14:15] Connection:keep-alive
856 DEBUG [2014-04-04 00:14:15] Pragma:No-cache
856 DEBUG [2014-04-04 00:14:15] Cache-Control:no-cache
856 DEBUG [2014-04-04 00:14:15] Expires:Thu, 01 Jan 1970 00:00:00 GMT
856 DEBUG [2014-04-04 00:14:15] Api-Server-IP:10.73.89.46
858 DEBUG [2014-04-04 00:14:15] {"access_token":"2.00_jUaWFdrOBSBa050340d750CdSuW","remind_in":"7872361","expires_in":7872361,"uid":"5062204849"}
0 INFO [2014-04-04 00:14:37] code: 1fd01d429bc0b23127606aafd13faa45
126 DEBUG [2014-04-04 00:14:37] Request:
126 DEBUG [2014-04-04 00:14:37] POSThttps://api.weibo.com/oauth2/access_token
715 DEBUG [2014-04-04 00:14:38] Response:
715 DEBUG [2014-04-04 00:14:38] https StatusCode:200
716 DEBUG [2014-04-04 00:14:38] Server:nginx/1.2.0
716 DEBUG [2014-04-04 00:14:38] Date:Thu, 03 Apr 2014 16:14:23 GMT
716 DEBUG [2014-04-04 00:14:38] Content-Type:text/plain;charset=UTF-8
716 DEBUG [2014-04-04 00:14:38] Content-Length:113
716 DEBUG [2014-04-04 00:14:38] Connection:keep-alive
716 DEBUG [2014-04-04 00:14:38] Pragma:No-cache
716 DEBUG [2014-04-04 00:14:38] Cache-Control:no-cache
716 DEBUG [2014-04-04 00:14:38] Expires:Thu, 01 Jan 1970 00:00:00 GMT
716 DEBUG [2014-04-04 00:14:38] Api-Server-IP:10.75.25.115
718 DEBUG [2014-04-04 00:14:38] {"access_token":"2.00PAVaWFdrOBSBd10b73c9dbSBsRxC","remind_in":"7872336","expires_in":7872336,"uid":"5062205899"}
0 INFO [2014-04-04 00:15:02] code: 8bf6bc7abdd441b9fd953a0dbf8238ec
114 DEBUG [2014-04-04 00:15:02] Request:
114 DEBUG [2014-04-04 00:15:02] POSThttps://api.weibo.com/oauth2/access_token
614 DEBUG [2014-04-04 00:15:02] Response:
614 DEBUG [2014-04-04 00:15:02] https StatusCode:200
614 DEBUG [2014-04-04 00:15:02] Server:nginx/1.2.0
614 DEBUG [2014-04-04 00:15:02] Date:Thu, 03 Apr 2014 16:14:48 GMT
614 DEBUG [2014-04-04 00:15:02] Content-Type:text/plain;charset=UTF-8
614 DEBUG [2014-04-04 00:15:02] Content-Length:113
614 DEBUG [2014-04-04 00:15:02] Connection:keep-alive
614 DEBUG [2014-04-04 00:15:02] Pragma:No-cache
614 DEBUG [2014-04-04 00:15:02] Cache-Control:no-cache
614 DEBUG [2014-04-04 00:15:02] Expires:Thu, 01 Jan 1970 00:00:00 GMT
614 DEBUG [2014-04-04 00:15:02] Api-Server-IP:10.73.89.46
616 DEBUG [2014-04-04 00:15:02] {"access_token":"2.00LVwYWFdrOBSB3db7ed6ba4YQ8vdE","remind_in":"7872314","expires_in":7872314,"uid":"5061834949"}
0 INFO [2014-04-04 00:15:26] code: 5d560b03dd7bba629681be1db7ed4f27
119 DEBUG [2014-04-04 00:15:26] Request:
119 DEBUG [2014-04-04 00:15:26] POSThttps://api.weibo.com/oauth2/access_token
668 DEBUG [2014-04-04 00:15:27] Response:
668 DEBUG [2014-04-04 00:15:27] https StatusCode:200
668 DEBUG [2014-04-04 00:15:27] Server:nginx/1.2.0
669 DEBUG [2014-04-04 00:15:27] Date:Thu, 03 Apr 2014 16:15:12 GMT
669 DEBUG [2014-04-04 00:15:27] Content-Type:text/plain;charset=UTF-8
669 DEBUG [2014-04-04 00:15:27] Content-Length:113
669 DEBUG [2014-04-04 00:15:27] Connection:keep-alive
669 DEBUG [2014-04-04 00:15:27] Pragma:No-cache
669 DEBUG [2014-04-04 00:15:27] Cache-Control:no-cache
669 DEBUG [2014-04-04 00:15:27] Expires:Thu, 01 Jan 1970 00:00:00 GMT
669 DEBUG [2014-04-04 00:15:27] Api-Server-IP:10.75.25.114
671 DEBUG [2014-04-04 00:15:27] {"access_token":"2.00VchXWFdrOBSB08ea5c705eMYaSgE","remind_in":"7872287","expires_in":7872287,"uid":"5061539415"}
0 INFO [2014-04-04 00:15:50] code: e026fea2a8c81e61e7c3f4ecfcd9ff62
115 DEBUG [2014-04-04 00:15:50] Request:
115 DEBUG [2014-04-04 00:15:50] POSThttps://api.weibo.com/oauth2/access_token
635 DEBUG [2014-04-04 00:15:50] Response:
635 DEBUG [2014-04-04 00:15:50] https StatusCode:200
635 DEBUG [2014-04-04 00:15:50] Server:nginx/1.2.0
635 DEBUG [2014-04-04 00:15:50] Date:Thu, 03 Apr 2014 16:15:36 GMT
636 DEBUG [2014-04-04 00:15:50] Content-Type:text/plain;charset=UTF-8
636 DEBUG [2014-04-04 00:15:50] Content-Length:113
636 DEBUG [2014-04-04 00:15:50] Connection:keep-alive
636 DEBUG [2014-04-04 00:15:50] Pragma:No-cache
636 DEBUG [2014-04-04 00:15:50] Cache-Control:no-cache
636 DEBUG [2014-04-04 00:15:50] Expires:Thu, 01 Jan 1970 00:00:00 GMT
636 DEBUG [2014-04-04 00:15:50] Api-Server-IP:10.75.25.114
638 DEBUG [2014-04-04 00:15:50] {"access_token":"2.00SxwYWFdrOBSB410583322f0ABBSw","remind_in":"7872263","expires_in":7872263,"uid":"5061836692"}
0 INFO [2014-04-04 00:16:25] code: 15d9016093c69c5a79bc44bcaf7a58d3
118 DEBUG [2014-04-04 00:16:25] Request:
118 DEBUG [2014-04-04 00:16:25] POSThttps://api.weibo.com/oauth2/access_token
644 DEBUG [2014-04-04 00:16:25] Response:
644 DEBUG [2014-04-04 00:16:25] https StatusCode:200
644 DEBUG [2014-04-04 00:16:25] Server:nginx/1.2.0
644 DEBUG [2014-04-04 00:16:25] Date:Thu, 03 Apr 2014 16:16:11 GMT
645 DEBUG [2014-04-04 00:16:25] Content-Type:text/plain;charset=UTF-8
645 DEBUG [2014-04-04 00:16:25] Content-Length:113
645 DEBUG [2014-04-04 00:16:25] Connection:keep-alive
645 DEBUG [2014-04-04 00:16:25] Pragma:No-cache
645 DEBUG [2014-04-04 00:16:25] Cache-Control:no-cache
645 DEBUG [2014-04-04 00:16:25] Expires:Thu, 01 Jan 1970 00:00:00 GMT
645 DEBUG [2014-04-04 00:16:25] Api-Server-IP:10.73.89.48
647 DEBUG [2014-04-04 00:16:25] {"access_token":"2.00PbMjWFdrOBSB14b8336c5aC7Va6D","remind_in":"7872231","expires_in":7872231,"uid":"5064280109"}
0 INFO [2014-04-04 00:16:49] code: 314ae3ed9a59f34c83c0438c5ced22e7
120 DEBUG [2014-04-04 00:16:49] Request:
120 DEBUG [2014-04-04 00:16:49] POSThttps://api.weibo.com/oauth2/access_token
653 DEBUG [2014-04-04 00:16:50] Response:
653 DEBUG [2014-04-04 00:16:50] https StatusCode:200
653 DEBUG [2014-04-04 00:16:50] Server:nginx/1.2.0
653 DEBUG [2014-04-04 00:16:50] Date:Thu, 03 Apr 2014 16:16:35 GMT
654 DEBUG [2014-04-04 00:16:50] Content-Type:text/plain;charset=UTF-8
654 DEBUG [2014-04-04 00:16:50] Content-Length:113
654 DEBUG [2014-04-04 00:16:50] Connection:keep-alive
654 DEBUG [2014-04-04 00:16:50] Pragma:No-cache
654 DEBUG [2014-04-04 00:16:50] Cache-Control:no-cache
654 DEBUG [2014-04-04 00:16:50] Expires:Thu, 01 Jan 1970 00:00:00 GMT
654 DEBUG [2014-04-04 00:16:50] Api-Server-IP:10.75.2.82
656 DEBUG [2014-04-04 00:16:50] {"access_token":"2.007ANjWFdrOBSB8f2b97f8b134cBcD","remind_in":"7872204","expires_in":7872204,"uid":"5064281670"}
0 INFO [2014-04-04 00:17:32] code: c3edd6d3fa06c96d5901ad41767fa853
119 DEBUG [2014-04-04 00:17:32] Request:
119 DEBUG [2014-04-04 00:17:32] POSThttps://api.weibo.com/oauth2/access_token
634 DEBUG [2014-04-04 00:17:32] Response:
634 DEBUG [2014-04-04 00:17:32] https StatusCode:200
635 DEBUG [2014-04-04 00:17:32] Server:nginx/1.2.0
635 DEBUG [2014-04-04 00:17:32] Date:Thu, 03 Apr 2014 16:17:18 GMT
635 DEBUG [2014-04-04 00:17:32] Content-Type:text/plain;charset=UTF-8
635 DEBUG [2014-04-04 00:17:32] Content-Length:113
635 DEBUG [2014-04-04 00:17:32] Connection:keep-alive
635 DEBUG [2014-04-04 00:17:32] Pragma:No-cache
635 DEBUG [2014-04-04 00:17:32] Cache-Control:no-cache
635 DEBUG [2014-04-04 00:17:32] Expires:Thu, 01 Jan 1970 00:00:00 GMT
635 DEBUG [2014-04-04 00:17:32] Api-Server-IP:10.73.89.48
637 DEBUG [2014-04-04 00:17:32] {"access_token":"2.00PtelWFdrOBSB71d2d9ef21vB7AEE","remind_in":"7872164","expires_in":7872164,"uid":"5064865513"}
0 INFO [2014-04-04 00:17:55] code: 7b425cb954af889e167b662311c6afa8
128 DEBUG [2014-04-04 00:17:55] Request:
129 DEBUG [2014-04-04 00:17:55] POSThttps://api.weibo.com/oauth2/access_token
660 DEBUG [2014-04-04 00:17:56] Response:
660 DEBUG [2014-04-04 00:17:56] https StatusCode:200
660 DEBUG [2014-04-04 00:17:56] Server:nginx/1.2.0
660 DEBUG [2014-04-04 00:17:56] Date:Thu, 03 Apr 2014 16:17:41 GMT
661 DEBUG [2014-04-04 00:17:56] Content-Type:text/plain;charset=UTF-8
661 DEBUG [2014-04-04 00:17:56] Content-Length:113
661 DEBUG [2014-04-04 00:17:56] Connection:keep-alive
661 DEBUG [2014-04-04 00:17:56] Pragma:No-cache
661 DEBUG [2014-04-04 00:17:56] Cache-Control:no-cache
661 DEBUG [2014-04-04 00:17:56] Expires:Thu, 01 Jan 1970 00:00:00 GMT
661 DEBUG [2014-04-04 00:17:56] Api-Server-IP:10.75.2.82
663 DEBUG [2014-04-04 00:17:56] {"access_token":"2.00IQ5oWFdrOBSBbe87f8fb68r5NFXB","remind_in":"7872138","expires_in":7872138,"uid":"5065516568"}
0 INFO [2014-04-04 00:18:18] code: 9fc57e658a399a24eadcbeeb38112b2d
132 DEBUG [2014-04-04 00:18:18] Request:
132 DEBUG [2014-04-04 00:18:18] POSThttps://api.weibo.com/oauth2/access_token
691 DEBUG [2014-04-04 00:18:18] Response:
691 DEBUG [2014-04-04 00:18:18] https StatusCode:200
691 DEBUG [2014-04-04 00:18:18] Server:nginx/1.2.0
691 DEBUG [2014-04-04 00:18:18] Date:Thu, 03 Apr 2014 16:18:04 GMT
691 DEBUG [2014-04-04 00:18:18] Content-Type:text/plain;charset=UTF-8
691 DEBUG [2014-04-04 00:18:18] Content-Length:113
691 DEBUG [2014-04-04 00:18:18] Connection:keep-alive
692 DEBUG [2014-04-04 00:18:18] Pragma:No-cache
692 DEBUG [2014-04-04 00:18:18] Cache-Control:no-cache
692 DEBUG [2014-04-04 00:18:18] Expires:Thu, 01 Jan 1970 00:00:00 GMT
692 DEBUG [2014-04-04 00:18:18] Api-Server-IP:10.75.25.86
694 DEBUG [2014-04-04 00:18:18] {"access_token":"2.00lW5oWFdrOBSB2f1d29667706pkl6","remind_in":"7872116","expires_in":7872116,"uid":"5065517599"}
0 INFO [2014-04-04 00:18:41] code: 9d12bfd57c113b244079b3927e70495b
138 DEBUG [2014-04-04 00:18:41] Request:
138 DEBUG [2014-04-04 00:18:41] POSThttps://api.weibo.com/oauth2/access_token
671 DEBUG [2014-04-04 00:18:41] Response:
671 DEBUG [2014-04-04 00:18:41] https StatusCode:200
671 DEBUG [2014-04-04 00:18:41] Server:nginx/1.2.0
671 DEBUG [2014-04-04 00:18:41] Date:Thu, 03 Apr 2014 16:18:27 GMT
671 DEBUG [2014-04-04 00:18:41] Content-Type:text/plain;charset=UTF-8
671 DEBUG [2014-04-04 00:18:41] Content-Length:113
671 DEBUG [2014-04-04 00:18:41] Connection:keep-alive
671 DEBUG [2014-04-04 00:18:41] Pragma:No-cache
671 DEBUG [2014-04-04 00:18:41] Cache-Control:no-cache
671 DEBUG [2014-04-04 00:18:41] Expires:Thu, 01 Jan 1970 00:00:00 GMT
671 DEBUG [2014-04-04 00:18:41] Api-Server-IP:10.73.89.47
673 DEBUG [2014-04-04 00:18:41] {"access_token":"2.00SkSjWFdrOBSBd4df516d0dTUIiCB","remind_in":"7872096","expires_in":7872096,"uid":"5064303734"}
0 INFO [2014-04-04 00:19:04] code: 0ce89fe58f7d2057c4f7ba4e40a9a861
140 DEBUG [2014-04-04 00:19:04] Request:
141 DEBUG [2014-04-04 00:19:04] POSThttps://api.weibo.com/oauth2/access_token
649 DEBUG [2014-04-04 00:19:04] Response:
649 DEBUG [2014-04-04 00:19:04] https StatusCode:200
649 DEBUG [2014-04-04 00:19:04] Server:nginx/1.2.0
649 DEBUG [2014-04-04 00:19:04] Date:Thu, 03 Apr 2014 16:18:50 GMT
649 DEBUG [2014-04-04 00:19:04] Content-Type:text/plain;charset=UTF-8
650 DEBUG [2014-04-04 00:19:04] Content-Length:113
650 DEBUG [2014-04-04 00:19:04] Connection:keep-alive
650 DEBUG [2014-04-04 00:19:04] Pragma:No-cache
650 DEBUG [2014-04-04 00:19:04] Cache-Control:no-cache
650 DEBUG [2014-04-04 00:19:04] Expires:Thu, 01 Jan 1970 00:00:00 GMT
650 DEBUG [2014-04-04 00:19:04] Api-Server-IP:10.75.25.115
652 DEBUG [2014-04-04 00:19:04] {"access_token":"2.0073glWFdrOBSB3219f52efbdMs3RD","remind_in":"7872069","expires_in":7872069,"uid":"5064871166"}
0 INFO [2014-04-04 00:19:31] code: a4e4572c1e511ac3ab997fe1f2de0143
121 DEBUG [2014-04-04 00:19:31] Request:
121 DEBUG [2014-04-04 00:19:31] POSThttps://api.weibo.com/oauth2/access_token
652 DEBUG [2014-04-04 00:19:32] Response:
652 DEBUG [2014-04-04 00:19:32] https StatusCode:200
653 DEBUG [2014-04-04 00:19:32] Server:nginx/1.2.0
653 DEBUG [2014-04-04 00:19:32] Date:Thu, 03 Apr 2014 16:19:17 GMT
653 DEBUG [2014-04-04 00:19:32] Content-Type:text/plain;charset=UTF-8
653 DEBUG [2014-04-04 00:19:32] Content-Length:113
653 DEBUG [2014-04-04 00:19:32] Connection:keep-alive
653 DEBUG [2014-04-04 00:19:32] Pragma:No-cache
653 DEBUG [2014-04-04 00:19:32] Cache-Control:no-cache
653 DEBUG [2014-04-04 00:19:32] Expires:Thu, 01 Jan 1970 00:00:00 GMT
653 DEBUG [2014-04-04 00:19:32] Api-Server-IP:10.75.25.114
655 DEBUG [2014-04-04 00:19:32] {"access_token":"2.00X3sqWFdrOBSB401226e7a2a6v6uC","remind_in":"7872042","expires_in":7872042,"uid":"5066108941"}
0 INFO [2014-04-04 00:19:55] code: 78da72161276f8c2e2f06da7c98cd010
115 DEBUG [2014-04-04 00:19:55] Request:
115 DEBUG [2014-04-04 00:19:55] POSThttps://api.weibo.com/oauth2/access_token
603 DEBUG [2014-04-04 00:19:55] Response:
603 DEBUG [2014-04-04 00:19:55] https StatusCode:200
603 DEBUG [2014-04-04 00:19:55] Server:nginx/1.2.0
604 DEBUG [2014-04-04 00:19:55] Date:Thu, 03 Apr 2014 16:19:41 GMT
604 DEBUG [2014-04-04 00:19:55] Content-Type:text/plain;charset=UTF-8
604 DEBUG [2014-04-04 00:19:55] Content-Length:113
604 DEBUG [2014-04-04 00:19:55] Connection:keep-alive
604 DEBUG [2014-04-04 00:19:55] Pragma:No-cache
604 DEBUG [2014-04-04 00:19:55] Cache-Control:no-cache
604 DEBUG [2014-04-04 00:19:55] Expires:Thu, 01 Jan 1970 00:00:00 GMT
604 DEBUG [2014-04-04 00:19:55] Api-Server-IP:10.75.2.82
606 DEBUG [2014-04-04 00:19:55] {"access_token":"2.00znsqWFdrOBSB6aeec45ad4hjXlyC","remind_in":"7872019","expires_in":7872019,"uid":"5066110643"}
0 INFO [2014-04-04 00:20:17] code: 55ca7b182135c7efbda47ced635e06aa
112 DEBUG [2014-04-04 00:20:17] Request:
112 DEBUG [2014-04-04 00:20:17] POSThttps://api.weibo.com/oauth2/access_token
624 DEBUG [2014-04-04 00:20:17] Response:
624 DEBUG [2014-04-04 00:20:17] https StatusCode:200
624 DEBUG [2014-04-04 00:20:17] Server:nginx/1.2.0
624 DEBUG [2014-04-04 00:20:17] Date:Thu, 03 Apr 2014 16:20:03 GMT
624 DEBUG [2014-04-04 00:20:17] Content-Type:text/plain;charset=UTF-8
624 DEBUG [2014-04-04 00:20:17] Content-Length:113
624 DEBUG [2014-04-04 00:20:17] Connection:keep-alive
624 DEBUG [2014-04-04 00:20:17] Pragma:No-cache
624 DEBUG [2014-04-04 00:20:17] Cache-Control:no-cache
625 DEBUG [2014-04-04 00:20:17] Expires:Thu, 01 Jan 1970 00:00:00 GMT
625 DEBUG [2014-04-04 00:20:17] Api-Server-IP:10.75.25.86
626 DEBUG [2014-04-04 00:20:17] {"access_token":"2.00VEtqWFdrOBSB831e15d704ipgUuD","remind_in":"7871997","expires_in":7871997,"uid":"5066111667"}
0 INFO [2014-04-04 00:20:40] code: 8386fb1a936c8f0d600e80b9da3b94f2
134 DEBUG [2014-04-04 00:20:40] Request:
134 DEBUG [2014-04-04 00:20:40] POSThttps://api.weibo.com/oauth2/access_token
655 DEBUG [2014-04-04 00:20:40] Response:
655 DEBUG [2014-04-04 00:20:40] https StatusCode:200
655 DEBUG [2014-04-04 00:20:40] Server:nginx/1.2.0
655 DEBUG [2014-04-04 00:20:40] Date:Thu, 03 Apr 2014 16:20:26 GMT
655 DEBUG [2014-04-04 00:20:40] Content-Type:text/plain;charset=UTF-8
655 DEBUG [2014-04-04 00:20:40] Content-Length:113
655 DEBUG [2014-04-04 00:20:40] Connection:keep-alive
655 DEBUG [2014-04-04 00:20:40] Pragma:No-cache
655 DEBUG [2014-04-04 00:20:40] Cache-Control:no-cache
655 DEBUG [2014-04-04 00:20:40] Expires:Thu, 01 Jan 1970 00:00:00 GMT
655 DEBUG [2014-04-04 00:20:40] Api-Server-IP:10.75.25.114
657 DEBUG [2014-04-04 00:20:40] {"access_token":"2.00va7oWFdrOBSBd0ac9bfccd0cMS3p","remind_in":"7871973","expires_in":7871973,"uid":"5065525545"}
0 INFO [2014-04-04 00:21:03] code: eb5bfce9de8677b37ffbbb355d79c245
117 DEBUG [2014-04-04 00:21:03] Request:
117 DEBUG [2014-04-04 00:21:03] POSThttps://api.weibo.com/oauth2/access_token
643 DEBUG [2014-04-04 00:21:04] Response:
643 DEBUG [2014-04-04 00:21:04] https StatusCode:200
643 DEBUG [2014-04-04 00:21:04] Server:nginx/1.2.0
643 DEBUG [2014-04-04 00:21:04] Date:Thu, 03 Apr 2014 16:20:49 GMT
643 DEBUG [2014-04-04 00:21:04] Content-Type:text/plain;charset=UTF-8
643 DEBUG [2014-04-04 00:21:04] Content-Length:113
643 DEBUG [2014-04-04 00:21:04] Connection:keep-alive
643 DEBUG [2014-04-04 00:21:04] Pragma:No-cache
643 DEBUG [2014-04-04 00:21:04] Cache-Control:no-cache
643 DEBUG [2014-04-04 00:21:04] Expires:Thu, 01 Jan 1970 00:00:00 GMT
643 DEBUG [2014-04-04 00:21:04] Api-Server-IP:10.75.25.114
645 DEBUG [2014-04-04 00:21:04] {"access_token":"2.004r7oWFdrOBSB9cebfee78b4uSY9C","remind_in":"7871950","expires_in":7871950,"uid":"5065526565"}
0 INFO [2014-04-04 00:21:26] code: 798a9f33e8337006ee9d79f6f6dcb99b
112 DEBUG [2014-04-04 00:21:26] Request:
113 DEBUG [2014-04-04 00:21:26] POSThttps://api.weibo.com/oauth2/access_token
606 DEBUG [2014-04-04 00:21:27] Response:
606 DEBUG [2014-04-04 00:21:27] https StatusCode:200
606 DEBUG [2014-04-04 00:21:27] Server:nginx/1.2.0
606 DEBUG [2014-04-04 00:21:27] Date:Thu, 03 Apr 2014 16:21:12 GMT
606 DEBUG [2014-04-04 00:21:27] Content-Type:text/plain;charset=UTF-8
606 DEBUG [2014-04-04 00:21:27] Content-Length:113
606 DEBUG [2014-04-04 00:21:27] Connection:keep-alive
606 DEBUG [2014-04-04 00:21:27] Pragma:No-cache
606 DEBUG [2014-04-04 00:21:27] Cache-Control:no-cache
606 DEBUG [2014-04-04 00:21:27] Expires:Thu, 01 Jan 1970 00:00:00 GMT
606 DEBUG [2014-04-04 00:21:27] Api-Server-IP:10.73.89.48
608 DEBUG [2014-04-04 00:21:27] {"access_token":"2.001CuqWFdrOBSB01aab19bf8ZHz4fB","remind_in":"7871930","expires_in":7871930,"uid":"5066115376"}
0 INFO [2014-04-07 22:57:00] code: 0187bcf0b599331454b26b86adf2d3cd
136 DEBUG [2014-04-07 22:57:00] Request:
136 DEBUG [2014-04-07 22:57:00] POSThttps://api.weibo.com/oauth2/access_token
644 DEBUG [2014-04-07 22:57:01] Response:
644 DEBUG [2014-04-07 22:57:01] https StatusCode:200
644 DEBUG [2014-04-07 22:57:01] Server:nginx/1.2.0
644 DEBUG [2014-04-07 22:57:01] Date:Mon, 07 Apr 2014 14:56:45 GMT
644 DEBUG [2014-04-07 22:57:01] Content-Type:text/plain;charset=UTF-8
644 DEBUG [2014-04-07 22:57:01] Content-Length:113
644 DEBUG [2014-04-07 22:57:01] Connection:keep-alive
644 DEBUG [2014-04-07 22:57:01] Pragma:No-cache
645 DEBUG [2014-04-07 22:57:01] Cache-Control:no-cache
645 DEBUG [2014-04-07 22:57:01] Expires:Thu, 01 Jan 1970 00:00:00 GMT
645 DEBUG [2014-04-07 22:57:01] Api-Server-IP:10.75.25.114
648 DEBUG [2014-04-07 22:57:01] {"access_token":"2.00AUE5WFdrOBSB382ec395daat5e_D","remind_in":"7790594","expires_in":7790594,"uid":"5059244020"}
0 INFO [2014-04-07 23:02:17] code: c7ceeb265ec1d9ab71eb46ecaeaf59de
110 DEBUG [2014-04-07 23:02:17] Request:
110 DEBUG [2014-04-07 23:02:17] POSThttps://api.weibo.com/oauth2/access_token
578 DEBUG [2014-04-07 23:02:18] Response:
578 DEBUG [2014-04-07 23:02:18] https StatusCode:200
578 DEBUG [2014-04-07 23:02:18] Server:nginx/1.2.0
578 DEBUG [2014-04-07 23:02:18] Date:Mon, 07 Apr 2014 15:02:02 GMT
578 DEBUG [2014-04-07 23:02:18] Content-Type:text/plain;charset=UTF-8
578 DEBUG [2014-04-07 23:02:18] Content-Length:113
578 DEBUG [2014-04-07 23:02:18] Connection:keep-alive
579 DEBUG [2014-04-07 23:02:18] Pragma:No-cache
579 DEBUG [2014-04-07 23:02:18] Cache-Control:no-cache
579 DEBUG [2014-04-07 23:02:18] Expires:Thu, 01 Jan 1970 00:00:00 GMT
579 DEBUG [2014-04-07 23:02:18] Api-Server-IP:10.75.25.114
581 DEBUG [2014-04-07 23:02:18] {"access_token":"2.00TsN4WFdrOBSB65886948f0pfIn5E","remind_in":"7790277","expires_in":7790277,"uid":"5059041805"}
0 INFO [2014-04-07 23:05:54] code: 55524ce3cb53f84418341a1b303dcdf1
114 DEBUG [2014-04-07 23:05:54] Request:
114 DEBUG [2014-04-07 23:05:54] POSThttps://api.weibo.com/oauth2/access_token
594 DEBUG [2014-04-07 23:05:55] Response:
594 DEBUG [2014-04-07 23:05:55] https StatusCode:200
594 DEBUG [2014-04-07 23:05:55] Server:nginx/1.2.0
594 DEBUG [2014-04-07 23:05:55] Date:Mon, 07 Apr 2014 15:05:39 GMT
594 DEBUG [2014-04-07 23:05:55] Content-Type:text/plain;charset=UTF-8
594 DEBUG [2014-04-07 23:05:55] Content-Length:113
594 DEBUG [2014-04-07 23:05:55] Connection:keep-alive
594 DEBUG [2014-04-07 23:05:55] Pragma:No-cache
594 DEBUG [2014-04-07 23:05:55] Cache-Control:no-cache
594 DEBUG [2014-04-07 23:05:55] Expires:Thu, 01 Jan 1970 00:00:00 GMT
594 DEBUG [2014-04-07 23:05:55] Api-Server-IP:10.75.2.83
596 DEBUG [2014-04-07 23:05:55] {"access_token":"2.00EeCQZFdrOBSB27ea9084220OcCd7","remind_in":"7790060","expires_in":7790060,"uid":"5101659340"}
0 INFO [2014-04-07 23:10:36] code: 9d77d8251cdf0ec1de25e499753d636d
110 DEBUG [2014-04-07 23:10:36] Request:
110 DEBUG [2014-04-07 23:10:36] POSThttps://api.weibo.com/oauth2/access_token
598 DEBUG [2014-04-07 23:10:36] Response:
598 DEBUG [2014-04-07 23:10:36] https StatusCode:200
598 DEBUG [2014-04-07 23:10:36] Server:nginx/1.2.0
598 DEBUG [2014-04-07 23:10:36] Date:Mon, 07 Apr 2014 15:10:20 GMT
598 DEBUG [2014-04-07 23:10:36] Content-Type:text/plain;charset=UTF-8
599 DEBUG [2014-04-07 23:10:36] Content-Length:113
599 DEBUG [2014-04-07 23:10:36] Connection:keep-alive
599 DEBUG [2014-04-07 23:10:36] Pragma:No-cache
599 DEBUG [2014-04-07 23:10:36] Cache-Control:no-cache
599 DEBUG [2014-04-07 23:10:36] Expires:Thu, 01 Jan 1970 00:00:00 GMT
599 DEBUG [2014-04-07 23:10:36] Api-Server-IP:10.73.89.48
601 DEBUG [2014-04-07 23:10:36] {"access_token":"2.00YvCQZFdrOBSBc015180fcd6JdVbC","remind_in":"7789781","expires_in":7789781,"uid":"5101660424"}