-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverLog11.out
14167 lines (14068 loc) · 839 KB
/
serverLog11.out
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
/home/hyeok/dev/BookkyProject_BackEnd
/home/hyeok/dev/BookkyProject_BackEnd
Watching for file changes with StatReloader
Performing system checks...
System check identified some issues:
WARNINGS:
bookky.AnyComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnAComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.Review.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.TempBook.TAG: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
System check identified 11 issues (0 silenced).
June 07, 2022 - 18:38:05
Django version 4.0.3, using settings 'bookky_backend.settings'
Starting development server at http://0:8002/
Quit the server with CONTROL-C.
[07/Jun/2022 18:38:13] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 18:38:13] "GET /swagger?format=openapi HTTP/1.1" 200 54767
[07/Jun/2022 18:38:13] "GET /swagger?format=openapi HTTP/1.1" 200 54767
[07/Jun/2022 18:42:45] "GET /v1/community/home HTTP/1.1" 200 1340
[07/Jun/2022 18:42:45] "GET /v1/home HTTP/1.1" 200 17787
[code_25_get_access] 시간 : 2022-06-07 09:42:45.673604, UID : 3 Access토큰 발급
[07/Jun/2022 18:42:45] "POST /v1/user/signin HTTP/1.1" 200 763
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 18:42:46] "GET /v1/home HTTP/1.1" 200 49904
[07/Jun/2022 18:43:38] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
[07/Jun/2022 18:43:38] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
[07/Jun/2022 18:43:39] "OPTIONS /v1/community/postdetail/0/160 HTTP/1.1" 200 0
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NTY1LCJVSUQiOjN9.G2BID8x62UJtdECiyFfWVDdKmxh4xVnny9Dx-1xoQ8w
[07/Jun/2022 18:43:39] "GET /v1/community/postdetail/0/160 HTTP/1.1" 200 482
[07/Jun/2022 18:43:39] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
[07/Jun/2022 18:43:40] "OPTIONS /v1/community/postdetail/0/103 HTTP/1.1" 200 0
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NTY1LCJVSUQiOjN9.G2BID8x62UJtdECiyFfWVDdKmxh4xVnny9Dx-1xoQ8w
[07/Jun/2022 18:43:40] "GET /v1/community/postdetail/0/103 HTTP/1.1" 200 1705
[07/Jun/2022 18:43:41] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NTY1LCJVSUQiOjN9.G2BID8x62UJtdECiyFfWVDdKmxh4xVnny9Dx-1xoQ8w
[07/Jun/2022 18:43:41] "GET /v1/community/postdetail/0/160 HTTP/1.1" 200 482
[07/Jun/2022 18:43:42] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
[07/Jun/2022 18:43:44] "OPTIONS /v1/user/signout HTTP/1.1" 200 0
[07/Jun/2022 18:43:44] "POST /v1/user/signout HTTP/1.1" 200 53
[07/Jun/2022 18:43:44] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
[07/Jun/2022 18:43:46] "GET /v1/community/home HTTP/1.1" 200 1340
[07/Jun/2022 18:43:46] "GET /v1/home HTTP/1.1" 200 17787
[code_25_get_access] 시간 : 2022-06-07 09:43:46.648514, UID : 15 Access토큰 발급
[code_47_get_refreshToken] 시간 : 2022-06-07 09:43:46.658148, UID : 15 갱신토큰 발급
[07/Jun/2022 18:43:46] "POST /v1/user/signin HTTP/1.1" 200 686
6개 갯수 = 0
5,6개 갯수 = 0
4,5,6개 갯수 = 3
[code_25_get_access] 시간 : 2022-06-07 09:43:46.964246, UID : 15 Access토큰 발급
[07/Jun/2022 18:43:46] "POST /v1/user/signin HTTP/1.1" 200 686
[07/Jun/2022 18:43:46] "GET /v1/home HTTP/1.1" 200 18626
[07/Jun/2022 18:43:47] "GET /v1/community/home?count=6 HTTP/1.1" 200 1340
[07/Jun/2022 18:43:48] "POST /v1/user/signout HTTP/1.1" 200 53
[07/Jun/2022 18:43:51] "GET /v1/community/home HTTP/1.1" 200 1340
[07/Jun/2022 18:43:51] "GET /v1/home HTTP/1.1" 200 17787
[code_25_get_access] 시간 : 2022-06-07 09:43:51.492390, UID : 3 Access토큰 발급
[code_47_get_refreshToken] 시간 : 2022-06-07 09:43:51.501926, UID : 3 갱신토큰 발급
[07/Jun/2022 18:43:51] "POST /v1/user/signin HTTP/1.1" 200 763
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[code_25_get_access] 시간 : 2022-06-07 09:43:51.784841, UID : 3 Access토큰 발급
[07/Jun/2022 18:43:51] "POST /v1/user/signin HTTP/1.1" 200 763
[07/Jun/2022 18:43:51] "GET /v1/home HTTP/1.1" 200 49941
[07/Jun/2022 18:43:52] "GET /v1/community/home?count=6 HTTP/1.1" 200 1340
[07/Jun/2022 18:44:02] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1359
[07/Jun/2022 18:44:04] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
[07/Jun/2022 18:44:05] "GET /v1/community/home?count=6 HTTP/1.1" 200 1340
[07/Jun/2022 18:44:06] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
[07/Jun/2022 18:44:07] "OPTIONS /v1/community/postdetail/2/19 HTTP/1.1" 200 0
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NjMxLCJVSUQiOjN9.o85MVKWdDPeNVE5lSQUS_ff_1Hst4JDRzQ5s1vpvAkA
[07/Jun/2022 18:44:07] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 18:44:08] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
[07/Jun/2022 18:44:09] "OPTIONS /v1/community/postdetail/0/120 HTTP/1.1" 200 0
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NjMxLCJVSUQiOjN9.o85MVKWdDPeNVE5lSQUS_ff_1Hst4JDRzQ5s1vpvAkA
[07/Jun/2022 18:44:09] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3263
[07/Jun/2022 18:44:11] "OPTIONS /v1/community/like/0/120 HTTP/1.1" 200 0
[07/Jun/2022 18:44:11] "POST /v1/community/like/0/120 HTTP/1.1" 200 67
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NjMxLCJVSUQiOjN9.o85MVKWdDPeNVE5lSQUS_ff_1Hst4JDRzQ5s1vpvAkA
[07/Jun/2022 18:44:11] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3261
[07/Jun/2022 18:44:12] "POST /v1/community/like/0/120 HTTP/1.1" 200 66
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NjMxLCJVSUQiOjN9.o85MVKWdDPeNVE5lSQUS_ff_1Hst4JDRzQ5s1vpvAkA
[07/Jun/2022 18:44:12] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3263
[07/Jun/2022 18:44:18] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1NjMxLCJVSUQiOjN9.o85MVKWdDPeNVE5lSQUS_ff_1Hst4JDRzQ5s1vpvAkA
[07/Jun/2022 18:44:19] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3263
[07/Jun/2022 18:44:19] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 549
[07/Jun/2022 18:44:22] "GET /v1/community/home?count=6 HTTP/1.1" 200 1349
[07/Jun/2022 18:44:23] "GET /v1/community/home HTTP/1.1" 200 1349
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 18:44:23] "GET /v1/home HTTP/1.1" 200 49923
[code_64_re_generate_Token] 시간 : 2022-06-07 09:48:05.123027, UID : 4 토큰 재발급
[code_25_get_access] 시간 : 2022-06-07 09:48:05.123151, UID : 4 Access토큰 발급
[07/Jun/2022 18:48:05] "POST /v1/auth/refresh HTTP/1.1" 200 222
Unauthorized: /v1/home
[07/Jun/2022 18:48:05] "GET /v1/home HTTP/1.1" 401 159
[07/Jun/2022 18:48:11] "GET /v1/myprofile HTTP/1.1" 200 8091
[07/Jun/2022 18:48:18] "GET /v1/myprofile HTTP/1.1" 200 8091
[07/Jun/2022 18:48:24] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
[code_64_re_generate_Token] 시간 : 2022-06-07 09:48:29.407287, UID : 4유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 18:48:29] "POST /v1/auth/refresh HTTP/1.1" 400 104
6개 갯수 = 0
5,6개 갯수 = 1
4,5,6개 갯수 = 9
[07/Jun/2022 18:48:29] "GET /v1/home HTTP/1.1" 200 15475
[07/Jun/2022 18:48:37] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk1ODg1LCJVSUQiOjR9.aqRFdpzGERm5QAVOS7I_zUlN1uzcA4lweI-4gjEF_kY
[07/Jun/2022 18:48:38] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3258
/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/recommendview.py changed, reloading.
/home/hyeok/dev/BookkyProject_BackEnd
Watching for file changes with StatReloader
Performing system checks...
Exception in thread django-main-thread:
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/management/commands/runserver.py", line 134, in inner_run
self.check(display_num_errors=True)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/management/base.py", line 487, in check
all_issues = checks.run_checks(
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/checks/registry.py", line 88, in run_checks
new_errors = check(app_configs=app_configs, databases=databases)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/checks/urls.py", line 14, in check_url_config
return check_resolver(resolver)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/checks/urls.py", line 24, in check_resolver
return check_method()
File "/home/hyeok/.local/lib/python3.8/site-packages/django/urls/resolvers.py", line 480, in check
for pattern in self.url_patterns:
File "/home/hyeok/.local/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/urls/resolvers.py", line 696, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/urls/resolvers.py", line 689, in urlconf_module
return import_module(self.urlconf_name)
File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky_backend/urls.py", line 26, in <module>
path('v1/', include('bookky.urls.urls')),
File "/home/hyeok/.local/lib/python3.8/site-packages/django/urls/conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)
File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/urls/urls.py", line 23, in <module>
path('user/recommendtag', recommendview.metauserfavorite), #POST
AttributeError: module 'bookky.views.recommendview' has no attribute 'metauserfavorite'
/home/hyeok/dev/BookkyProject_BackEnd/bookky/urls/urls.py changed, reloading.
/home/hyeok/dev/BookkyProject_BackEnd
Watching for file changes with StatReloader
Performing system checks...
System check identified some issues:
WARNINGS:
bookky.AnyComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnAComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.Review.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.TempBook.TAG: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
System check identified 11 issues (0 silenced).
June 07, 2022 - 18:49:38
Django version 4.0.3, using settings 'bookky_backend.settings'
Starting development server at http://0:8002/
Quit the server with CONTROL-C.
[07/Jun/2022 18:49:50] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 18:49:50] "GET /swagger?format=openapi HTTP/1.1" 200 53954
[07/Jun/2022 18:49:50] "GET /swagger?format=openapi HTTP/1.1" 200 53954
[07/Jun/2022 18:50:14] "GET /v1/community/home HTTP/1.1" 200 1349
[07/Jun/2022 18:50:14] "GET /v1/home HTTP/1.1" 200 17758
[code_25_get_access] 시간 : 2022-06-07 09:50:15.035361, UID : 3 Access토큰 발급
[07/Jun/2022 18:50:15] "POST /v1/user/signin HTTP/1.1" 200 763
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 18:50:15] "GET /v1/home HTTP/1.1" 200 49957
/home/hyeok/dev/BookkyProject_BackEnd/bookky/urls/urls.py changed, reloading.
/home/hyeok/dev/BookkyProject_BackEnd
Watching for file changes with StatReloader
Performing system checks...
System check identified some issues:
WARNINGS:
bookky.AnyComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnAComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.Review.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.TempBook.TAG: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
System check identified 11 issues (0 silenced).
June 07, 2022 - 18:55:00
Django version 4.0.3, using settings 'bookky_backend.settings'
Starting development server at http://0:8002/
Quit the server with CONTROL-C.
/home/hyeok/dev/BookkyProject_BackEnd/bookky/urls/urls.py changed, reloading.
/home/hyeok/dev/BookkyProject_BackEnd
Watching for file changes with StatReloader
Performing system checks...
System check identified some issues:
WARNINGS:
bookky.AnyComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.AnyCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.MarketCommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnAComment.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.QnACommunity.postImage: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.Review.like: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
bookky.TempBook.TAG: (fields.E010) ArrayField default should be a callable instead of an instance so that it's not shared between all field instances.
HINT: Use a callable instead, e.g., use `list` instead of `[]`.
System check identified 11 issues (0 silenced).
June 07, 2022 - 18:55:07
Django version 4.0.3, using settings 'bookky_backend.settings'
Starting development server at http://0:8002/
Quit the server with CONTROL-C.
[07/Jun/2022 18:55:09] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 18:55:09] "GET /swagger?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:55:10] "GET /swagger?format=openapi HTTP/1.1" 200 53752
Internal Server Error: /v1/books/tag/9999
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/bookviews.py", line 398, in getBooksByTag
totalPage = len(bookData)//quantity
UnboundLocalError: local variable 'bookData' referenced before assignment
[07/Jun/2022 18:55:39] "GET /v1/books/tag/9999 HTTP/1.1" 500 16796
[07/Jun/2022 18:55:42] "GET /v1/books/tag/26 HTTP/1.1" 200 6822
Unauthorized: /v1/home/tags
[07/Jun/2022 18:55:48] "GET /v1/home/tags HTTP/1.1" 401 138
Unauthorized: /v1/home/tags
[07/Jun/2022 18:55:52] "GET /v1/home/tags HTTP/1.1" 401 138
Internal Server Error: /v1/books/tag/9999
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/bookviews.py", line 398, in getBooksByTag
totalPage = len(bookData)//quantity
UnboundLocalError: local variable 'bookData' referenced before assignment
[07/Jun/2022 18:55:57] "GET /v1/books/tag/9999 HTTP/1.1" 500 16796
Internal Server Error: /v1/books/tag/9999
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/bookviews.py", line 398, in getBooksByTag
totalPage = len(bookData)//quantity
UnboundLocalError: local variable 'bookData' referenced before assignment
[07/Jun/2022 18:56:02] "GET /v1/books/tag/9999 HTTP/1.1" 500 16796
Unauthorized: /v1/home/tags
[07/Jun/2022 18:56:04] "GET /v1/home/tags HTTP/1.1" 401 138
Unauthorized: /v1/home/tags
[07/Jun/2022 18:56:09] "GET /v1/home/tags HTTP/1.1" 401 138
[07/Jun/2022 18:56:14] "GET /v1/books/tag/26 HTTP/1.1" 200 6822
Unauthorized: /v1/books/reviews/6203
[07/Jun/2022 18:56:17] "GET /v1/books/reviews/6203 HTTP/1.1" 401 106
[07/Jun/2022 18:56:17] "GET /v1/books/detail/6203 HTTP/1.1" 200 10743
Unauthorized: /v1/books/reviews/757
[07/Jun/2022 18:56:22] "GET /v1/books/reviews/757 HTTP/1.1" 401 106
[07/Jun/2022 18:56:22] "GET /v1/books/detail/757 HTTP/1.1" 200 21909
Unauthorized: /v1/books/reviews/6203
[07/Jun/2022 18:56:25] "GET /v1/books/reviews/6203 HTTP/1.1" 401 106
[07/Jun/2022 18:56:25] "GET /v1/books/detail/6203 HTTP/1.1" 200 10743
Unauthorized: /v1/books/reviews/6203
[07/Jun/2022 18:56:33] "GET /v1/books/reviews/6203 HTTP/1.1" 401 106
[07/Jun/2022 18:56:33] "GET /v1/books/detail/6203 HTTP/1.1" 200 10743
[07/Jun/2022 18:56:44] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
[07/Jun/2022 18:56:48] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
[07/Jun/2022 18:56:58] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
Unauthorized: /v1/home/tags
[07/Jun/2022 18:57:09] "GET /v1/home/tags HTTP/1.1" 401 138
Unauthorized: /v1/books/reviews/4466
[07/Jun/2022 18:57:13] "GET /v1/books/reviews/4466 HTTP/1.1" 401 106
[07/Jun/2022 18:57:13] "GET /v1/books/detail/4466 HTTP/1.1" 200 18913
[07/Jun/2022 18:57:18] "GET /v1/books/tag/48 HTTP/1.1" 200 7103
Unauthorized: /v1/books/reviews/4466
[07/Jun/2022 18:57:20] "GET /v1/books/reviews/4466 HTTP/1.1" 401 106
[07/Jun/2022 18:57:20] "GET /v1/books/detail/4466 HTTP/1.1" 200 18913
Unauthorized: /v1/home/tags
[07/Jun/2022 18:57:22] "GET /v1/home/tags HTTP/1.1" 401 138
[07/Jun/2022 18:57:32] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
[07/Jun/2022 18:57:52] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 18:57:52] "GET /swagger?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:57:53] "GET /swagger?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:57:53] "GET /redoc HTTP/1.1" 200 992
[07/Jun/2022 18:57:53] "GET /static/drf-yasg/redoc-init.js HTTP/1.1" 200 2322
[07/Jun/2022 18:57:53] "GET /static/drf-yasg/redoc/redoc.min.js HTTP/1.1" 200 925768
[07/Jun/2022 18:57:53] "GET /static/drf-yasg/redoc/redoc-logo.png HTTP/1.1" 200 4969
[07/Jun/2022 18:57:53] "GET /redoc?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:57:53] "GET /redoc HTTP/1.1" 200 992
[07/Jun/2022 18:57:54] "GET /redoc?format=openapi HTTP/1.1" 200 53752
Unauthorized: /v1/home/tags
[07/Jun/2022 18:57:56] "GET /v1/home/tags HTTP/1.1" 401 138
Unauthorized: /v1/books/reviews/4230
[07/Jun/2022 18:58:08] "GET /v1/books/reviews/4230 HTTP/1.1" 401 106
[07/Jun/2022 18:58:08] "GET /v1/books/detail/4230 HTTP/1.1" 200 12960
[07/Jun/2022 18:58:09] "GET /v1/books/tag/14 HTTP/1.1" 200 7551
[07/Jun/2022 18:58:10] "GET /redoc?format=openapi HTTP/1.1" 200 53752
Unauthorized: /v1/books/reviews/4230
[07/Jun/2022 18:58:13] "GET /v1/books/reviews/4230 HTTP/1.1" 401 106
[07/Jun/2022 18:58:13] "GET /v1/books/detail/4230 HTTP/1.1" 200 12960
[07/Jun/2022 18:59:08] "GET /redoc HTTP/1.1" 200 992
[07/Jun/2022 18:59:09] "GET /redoc?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:59:10] "GET /redoc HTTP/1.1" 200 992
[07/Jun/2022 18:59:10] "GET /redoc?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:59:10] "GET /redoc HTTP/1.1" 200 992
[07/Jun/2022 18:59:10] "GET /redoc?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:59:11] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 18:59:11] "GET /swagger?format=openapi HTTP/1.1" 200 53752
[07/Jun/2022 18:59:12] "GET /swagger?format=openapi HTTP/1.1" 200 53752
Not Found: /v1/
[07/Jun/2022 19:00:11] "GET /v1/?p=928 HTTP/1.1" 404 9444
[code_64_re_generate_Token] 시간 : 2022-06-07 10:09:32.296362, UID : 4 토큰 재발급
[code_25_get_access] 시간 : 2022-06-07 10:09:32.296476, UID : 4 Access토큰 발급
[07/Jun/2022 19:09:32] "POST /v1/auth/refresh HTTP/1.1" 200 222
6개 갯수 = 0
5,6개 갯수 = 1
4,5,6개 갯수 = 9
[07/Jun/2022 19:09:32] "GET /v1/home HTTP/1.1" 200 15608
[07/Jun/2022 19:09:34] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:37] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1420
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:45] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1420
[07/Jun/2022 19:09:47] "PUT /v1/community/modifycomment/0 HTTP/1.1" 200 89
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:48] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1414
[07/Jun/2022 19:09:52] "PUT /v1/community/modifycomment/0 HTTP/1.1" 200 89
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:53] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1414
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:56] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1414
[07/Jun/2022 19:09:57] "POST /v1/community/writecomment/0 HTTP/1.1" 200 89
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:09:57] "GET /v1/community/postdetail/0/149 HTTP/1.1" 200 1678
[07/Jun/2022 19:11:33] "GET /swagger HTTP/1.1" 200 1643
[07/Jun/2022 19:11:33] "GET /swagger?format=openapi HTTP/1.1" 200 53753
[07/Jun/2022 19:11:34] "GET /swagger?format=openapi HTTP/1.1" 200 53753
Not Found: /apple-touch-icon-precomposed.png
[07/Jun/2022 19:11:34] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2709
Not Found: /apple-touch-icon.png
[07/Jun/2022 19:11:34] "GET /apple-touch-icon.png HTTP/1.1" 404 2673
Not Found: /v1/
[07/Jun/2022 19:12:10] "GET /v1/?p=2029 HTTP/1.1" 404 9445
Not Found: /robots.txt
[07/Jun/2022 19:12:10] "GET /robots.txt HTTP/1.1" 404 2643
[07/Jun/2022 19:13:23] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
[code_64_re_generate_Token] 시간 : 2022-06-07 10:13:37.257654, UID : 4유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 19:13:37] "POST /v1/auth/refresh HTTP/1.1" 400 104
6개 갯수 = 0
5,6개 갯수 = 1
4,5,6개 갯수 = 9
[07/Jun/2022 19:13:37] "GET /v1/home HTTP/1.1" 200 15463
[07/Jun/2022 19:13:38] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2827
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:13:39] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3258
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:13:43] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3258
[07/Jun/2022 19:13:44] "GET /v1/community/hotcommunity HTTP/1.1" 200 549
[07/Jun/2022 19:13:46] "POST /v1/community/writecomment/0 HTTP/1.1" 200 89
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:13:47] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
[07/Jun/2022 19:13:47] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:13:50] "GET /v1/community/postlist/1?page=1 HTTP/1.1" 200 825
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:13:50] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
Unauthorized: /v1/community/postlist/3
[07/Jun/2022 19:13:52] "GET /v1/community/postlist/3?page=1 HTTP/1.1" 401 106
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:13:54] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
Unauthorized: /v1/myprofile
[07/Jun/2022 19:13:55] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 10:13:55.535868, UID : 5 토큰 재발급
[code_25_get_access] 시간 : 2022-06-07 10:13:55.536017, UID : 5 Access토큰 발급
[07/Jun/2022 19:13:55] "POST /v1/auth/refresh HTTP/1.1" 200 222
Unauthorized: /v1/myprofile
[07/Jun/2022 19:13:55] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 10:13:55.692642, UID : 5유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 19:13:55] "POST /v1/auth/refresh HTTP/1.1" 400 104
[07/Jun/2022 19:13:56] "GET /v1/community/postlist/3?page=1 HTTP/1.1" 200 1192
[07/Jun/2022 19:14:00] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
[07/Jun/2022 19:14:01] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:01] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3524
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:14:02] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
[07/Jun/2022 19:14:03] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:04] "GET /v1/community/postdetail/0/103 HTTP/1.1" 200 1706
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:14:07] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
[07/Jun/2022 19:14:08] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:10] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3524
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:14:24] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:14:27] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
[07/Jun/2022 19:14:34] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:38] "GET /v1/community/postdetail/0/160 HTTP/1.1" 200 481
[07/Jun/2022 19:14:39] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:39] "GET /v1/community/postdetail/0/103 HTTP/1.1" 200 1706
[07/Jun/2022 19:14:40] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:14:41] "GET /v1/community/postdetail/0/160 HTTP/1.1" 200 481
[07/Jun/2022 19:14:46] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
[07/Jun/2022 19:15:04] "GET /v1/community/post/book?keyword=React HTTP/1.1" 200 18957
[code_64_re_generate_Token] 시간 : 2022-06-07 10:15:28.134441, UID : 4유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 19:15:28] "POST /v1/auth/refresh HTTP/1.1" 400 104
6개 갯수 = 0
5,6개 갯수 = 1
4,5,6개 갯수 = 9
[07/Jun/2022 19:15:28] "GET /v1/home HTTP/1.1" 200 15566
[07/Jun/2022 19:15:28] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2828
[07/Jun/2022 19:15:29] "POST /v1/community/writepost/0 HTTP/1.1" 201 83
[07/Jun/2022 19:15:29] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2849
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:15:29] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:15:35] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
[07/Jun/2022 19:15:36] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3MTcyLCJVSUQiOjR9.U4ufxf2vhsFUuNg1gohcZ5cPO4n3Ow-e5ZTQ0tfVW6U
[07/Jun/2022 19:15:38] "GET /v1/community/postdetail/0/120 HTTP/1.1" 200 3518
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:15:38] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:15:54] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:15:58] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3167
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:15:59] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:02] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3167
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:03] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:04] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:05] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:07] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3167
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:09] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:09] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:11] "GET /v1/community/postdetail/2/35 HTTP/1.1" 200 1427
[07/Jun/2022 19:16:12] "GET /v1/community/comment/2/35 HTTP/1.1" 200 1741
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:13] "GET /v1/community/postdetail/2/35 HTTP/1.1" 200 1427
[07/Jun/2022 19:16:13] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:14] "GET /v1/community/postdetail/2/33 HTTP/1.1" 200 2138
[07/Jun/2022 19:16:16] "GET /v1/community/comment/2/33 HTTP/1.1" 200 1060
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:17] "GET /v1/community/postdetail/2/33 HTTP/1.1" 200 2138
[07/Jun/2022 19:16:18] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:19] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:20] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3167
[07/Jun/2022 19:16:23] "POST /v1/community/writecomment/2 HTTP/1.1" 200 89
[07/Jun/2022 19:16:23] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3431
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:27] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:28] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:16:30] "GET /v1/community/postlist/1?page=1 HTTP/1.1" 200 825
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:30] "GET /v1/community/postdetail/1/8 HTTP/1.1" 200 607
[07/Jun/2022 19:16:32] "GET /v1/community/postlist/1?page=1 HTTP/1.1" 200 825
[07/Jun/2022 19:16:33] "GET /v1/community/postlist/3?page=1 HTTP/1.1" 200 1359
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:34] "GET /v1/community/postdetail/0/161 HTTP/1.1" 200 1017
[07/Jun/2022 19:16:38] "GET /v1/community/postlist/3?page=1 HTTP/1.1" 200 1359
[07/Jun/2022 19:16:40] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:41] "GET /v1/community/postdetail/2/33 HTTP/1.1" 200 2138
[07/Jun/2022 19:16:43] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:44] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:45] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3431
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:16:47] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:16:48] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
6개 갯수 = 0
5,6개 갯수 = 0
4,5,6개 갯수 = 4
[07/Jun/2022 19:16:54] "GET /v1/home/tags HTTP/1.1" 200 37094
[07/Jun/2022 19:17:02] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:17:03] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:17:04] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3431
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:17:09] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:17:10] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:17:11] "GET /v1/myprofile HTTP/1.1" 200 5016
[07/Jun/2022 19:17:13] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:17:13] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:17:14] "GET /v1/community/comment/2/19 HTTP/1.1" 200 3431
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk3NDM1LCJVSUQiOjV9.Gmo9JQ29JU_MbMy5YXiMJjaYUHun495TtPfMSH7VXE8
[07/Jun/2022 19:17:16] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:37:16] "GET /v1/community/home?count=6 HTTP/1.1" 200 1370
[07/Jun/2022 19:37:16] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 550
[07/Jun/2022 19:37:18] "GET /v1/community/home?count=6 HTTP/1.1" 200 1370
[07/Jun/2022 19:37:19] "GET /v1/community/hotcommunity?quantity=10&page=1 HTTP/1.1" 200 550
[07/Jun/2022 19:37:20] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1510
[07/Jun/2022 19:37:20] "GET /v1/community/postlist/2?quantity=10&page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:37:20] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1510
[07/Jun/2022 19:40:59] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:41:02] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
Unauthorized: /v1/myprofile
[07/Jun/2022 19:41:04] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 10:41:04.219641, UID : 5 토큰 재발급
[code_25_get_access] 시간 : 2022-06-07 10:41:04.219759, UID : 5 Access토큰 발급
[07/Jun/2022 19:41:04] "POST /v1/auth/refresh HTTP/1.1" 200 222
Unauthorized: /v1/myprofile
[07/Jun/2022 19:41:04] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 10:41:04.284769, UID : 5유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 19:41:04] "POST /v1/auth/refresh HTTP/1.1" 400 104
[07/Jun/2022 19:41:04] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:41:10] "GET /v1/myprofile HTTP/1.1" 200 5016
[07/Jun/2022 19:41:14] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk5MDY0LCJVSUQiOjV9.SQRveKvfhn9zZvkTGSnws1UPZzEF5SNIov5heSfvorM
[07/Jun/2022 19:41:15] "GET /v1/community/postdetail/2/19 HTTP/1.1" 200 3051
[07/Jun/2022 19:41:17] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:41:21] "GET /v1/community/postlist/1?page=1 HTTP/1.1" 200 825
[07/Jun/2022 19:41:23] "GET /v1/community/postlist/3?page=1 HTTP/1.1" 200 1359
[07/Jun/2022 19:41:26] "GET /v1/community/hotcommunity HTTP/1.1" 200 550
[07/Jun/2022 19:41:28] "GET /v1/community/postlist/2?page=1 HTTP/1.1" 200 1584
[07/Jun/2022 19:41:30] "GET /v1/community/postlist/1?page=1 HTTP/1.1" 200 825
[07/Jun/2022 20:02:21] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2849
하와
하와
[07/Jun/2022 20:02:28] "GET /v1/community/search?keyword=%ED%95%98%EC%99%80 HTTP/1.1" 200 234
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzX3Rva2VuIiwiZXhwIjoxNjU0NTk5MDY0LCJVSUQiOjV9.SQRveKvfhn9zZvkTGSnws1UPZzEF5SNIov5heSfvorM
Unauthorized: /v1/community/postdetail/0/154
[07/Jun/2022 20:02:30] "GET /v1/community/postdetail/0/154 HTTP/1.1" 401 106
[07/Jun/2022 20:02:34] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2849
하와이
하와이
[07/Jun/2022 20:02:40] "GET /v1/community/search?keyword=%ED%95%98%EC%99%80%EC%9D%B4 HTTP/1.1" 200 234
Unauthorized: /v1/myprofile
[07/Jun/2022 20:14:57] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 11:14:57.745057, UID : 5 토큰 재발급
[code_25_get_access] 시간 : 2022-06-07 11:14:57.745158, UID : 5 Access토큰 발급
[07/Jun/2022 20:14:57] "POST /v1/auth/refresh HTTP/1.1" 200 222
Unauthorized: /v1/myprofile
[07/Jun/2022 20:14:57] "GET /v1/myprofile HTTP/1.1" 401 106
[code_64_re_generate_Token] 시간 : 2022-06-07 11:14:57.817513, UID : 5유효기간 남음
Bad Request: /v1/auth/refresh
[07/Jun/2022 20:14:57] "POST /v1/auth/refresh HTTP/1.1" 400 104
[07/Jun/2022 20:15:38] "GET /v1/community/postlist/0?page=1 HTTP/1.1" 200 2849
[07/Jun/2022 20:39:59] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1510
[code_25_get_access] 시간 : 2022-06-07 11:39:59.947425, UID : 3 Access토큰 발급
[07/Jun/2022 20:39:59] "POST /v1/user/signin HTTP/1.1" 200 763
[07/Jun/2022 20:40:00] "GET /v1/community/postlist/0?quantity=10&page=1 HTTP/1.1" 200 1510
[07/Jun/2022 20:40:02] "OPTIONS /v1/home HTTP/1.1" 200 0
[07/Jun/2022 20:40:02] "GET /v1/community/home HTTP/1.1" 200 1370
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 20:40:02] "GET /v1/home HTTP/1.1" 200 49876
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:07] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:07] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:07] "GET /v1/home HTTP/1.1" 200 17734
[code_25_get_access] 시간 : 2022-06-07 11:40:12.719783, UID : 3 Access토큰 발급
[07/Jun/2022 20:40:12] "POST /v1/user/signin HTTP/1.1" 200 763
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 208, in userSignIn
if data['loginMethod'] is not None:
KeyError: 'loginMethod'
[07/Jun/2022 20:40:12] "POST /v1/user/signin HTTP/1.1" 500 92948
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 208, in userSignIn
if data['loginMethod'] is not None:
KeyError: 'loginMethod'
[07/Jun/2022 20:40:12] "POST /v1/user/signin HTTP/1.1" 500 92994
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[code_25_get_access] 시간 : 2022-06-07 11:40:13.039086, UID : 3 Access토큰 발급
[07/Jun/2022 20:40:13] "POST /v1/user/signin HTTP/1.1" 200 763
[07/Jun/2022 20:40:13] "GET /v1/home HTTP/1.1" 200 50015
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 20:40:13] "GET /v1/home HTTP/1.1" 200 49940
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:16] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:16] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:16] "GET /v1/home HTTP/1.1" 200 17734
[code_25_get_access] 시간 : 2022-06-07 11:40:16.944104, UID : 3 Access토큰 발급
[07/Jun/2022 20:40:16] "POST /v1/user/signin HTTP/1.1" 200 763
6개 갯수 = 0
5,6개 갯수 = 2
4,5,6개 갯수 = 13
[07/Jun/2022 20:40:17] "GET /v1/home HTTP/1.1" 200 49906
[07/Jun/2022 20:40:19] "POST /v1/user/signout HTTP/1.1" 200 53
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:19] "POST /v1/user/signin HTTP/1.1" 500 92795
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:19] "POST /v1/user/signin HTTP/1.1" 500 92880
[07/Jun/2022 20:40:19] "POST /v1/user/signin HTTP/1.1" 500 92834
[07/Jun/2022 20:40:19] "GET /v1/home HTTP/1.1" 200 17734
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:22] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:22] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:22] "GET /v1/home HTTP/1.1" 200 17734
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:28] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:28] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:28] "GET /v1/home HTTP/1.1" 200 17734
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:29] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:29] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:29] "GET /v1/home HTTP/1.1" 200 17734
Internal Server Error: /v1/user/signin
Traceback (most recent call last):
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 509, in dispatch
response = self.handle_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 469, in handle_exception
self.raise_uncaught_exception(exc)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
raise exc
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/views.py", line 506, in dispatch
response = handler(request, *args, **kwargs)
File "/home/hyeok/.local/lib/python3.8/site-packages/rest_framework/decorators.py", line 50, in handler
return func(*args, **kwargs)
File "/home/hyeok/dev/BookkyProject_BackEnd/bookky/views/userviews.py", line 204, in userSignIn
if data['email'] is not None:
KeyError: 'email'
[07/Jun/2022 20:40:30] "POST /v1/user/signin HTTP/1.1" 500 92795
[07/Jun/2022 20:40:30] "GET /v1/community/home HTTP/1.1" 200 1370
[07/Jun/2022 20:40:30] "GET /v1/home HTTP/1.1" 200 17734
Internal Server Error: /v1/user/signin