-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidentityserver4_log.txt
More file actions
3380 lines (3380 loc) · 377 KB
/
identityserver4_log.txt
File metadata and controls
3380 lines (3380 loc) · 377 KB
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
2019-06-26 19:44:17.252 +01:00 [FTL] Application startup exception
System.Exception: Could not resolve a service of type 'IdentityServer4AspNetIdentity.SeedData' for the parameter 'seedData' of method 'Configure' on type 'IdentityServer4AspNetIdentity.Startup'. ---> System.InvalidOperationException: No service for type 'IdentityServer4AspNetIdentity.SeedData' has been registered.
at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
--- End of inner exception stack trace ---
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app)
at Microsoft.AspNetCore.HostFilteringStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder app)
at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication()
2019-06-26 19:45:58.725 +01:00 [FTL] Application startup exception
System.Exception: Could not resolve a service of type 'IdentityServer4AspNetIdentity.SeedData' for the parameter 'seedData' of method 'Configure' on type 'IdentityServer4AspNetIdentity.Startup'. ---> System.InvalidOperationException: No service for type 'IdentityServer4AspNetIdentity.SeedData' has been registered.
at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
--- End of inner exception stack trace ---
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app)
at Microsoft.AspNetCore.HostFilteringStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder app)
at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication()
2019-06-26 20:00:52.119 +01:00 [FTL] Application startup exception
System.Exception: Could not resolve a service of type 'IdentityServer4AspNetIdentity.SeedData' for the parameter 'seedData' of method 'Configure' on type 'IdentityServer4AspNetIdentity.Startup'. ---> System.InvalidOperationException: Cannot consume scoped service 'Microsoft.AspNetCore.Identity.UserManager`1[IdentityServer4AspNetIdentity.Models.ApplicationUser]' from singleton 'IdentityServer4AspNetIdentity.SeedData'.
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteValidator.VisitScoped(ScopedCallSite scopedCallSite, CallSiteValidatorState state)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(IServiceCallSite callSite, TArgument argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteValidator.VisitConstructor(ConstructorCallSite constructorCallSite, CallSiteValidatorState state)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(IServiceCallSite callSite, TArgument argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteValidator.VisitSingleton(SingletonCallSite singletonCallSite, CallSiteValidatorState state)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(IServiceCallSite callSite, TArgument argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteValidator.ValidateCallSite(IServiceCallSite callSite)
at Microsoft.Extensions.DependencyInjection.ServiceProvider.Microsoft.Extensions.DependencyInjection.ServiceLookup.IServiceProviderEngineCallback.OnCreate(IServiceCallSite callSite)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngine.CreateServiceAccessor(Type serviceType)
at System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngine.GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
--- End of inner exception stack trace ---
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app)
at Microsoft.AspNetCore.HostFilteringStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder app)
at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder builder)
at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication()
2019-06-26 20:03:17.235 +01:00 [ERR] Failed executing DbCommand (20ms) [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT [a].[Id], [a].[AccessFailedCount], [a].[ConcurrencyStamp], [a].[Email], [a].[EmailConfirmed], [a].[JobTitle], [a].[LockoutEnabled], [a].[LockoutEnd], [a].[Nickname], [a].[NormalizedEmail], [a].[NormalizedUserName], [a].[PasswordHash], [a].[PhoneNumber], [a].[PhoneNumberConfirmed], [a].[SecurityStamp], [a].[TwoFactorEnabled], [a].[UserName]
FROM [AspNetUsers] AS [a]
System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'JobTitle'.
Invalid column name 'Nickname'.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.get_MetaData()
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader()
at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues)
ClientConnectionId:959332d3-0e6d-4347-b111-992344f1d642
Error Number:207,State:1,Class:16
2019-06-26 20:03:17.334 +01:00 [ERR] An exception occurred in the database while iterating the results of a query for context type 'IdentityServer4AspNetIdentity.Data.AuthServerApplicationDbContext'.
System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'JobTitle'.
Invalid column name 'Nickname'.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.get_MetaData()
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader()
at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues)
at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues)
at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext()
at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
ClientConnectionId:959332d3-0e6d-4347-b111-992344f1d642
Error Number:207,State:1,Class:16
System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'JobTitle'.
Invalid column name 'Nickname'.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.get_MetaData()
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader()
at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues)
at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues)
at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer)
at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded)
at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext()
at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext()
at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext()
ClientConnectionId:959332d3-0e6d-4347-b111-992344f1d642
Error Number:207,State:1,Class:16
2019-06-26 20:28:17.484 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-26 20:28:17.636 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-26 20:28:17.671 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-26 20:28:17.678 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-26 20:28:17.701 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-26 20:28:17.703 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-26 20:28:18.277 +01:00 [DBG] Starting grant removal
2019-06-26 20:28:21.373 +01:00 [DBG] Login Url: /Account/Login
2019-06-26 20:28:21.385 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-26 20:28:21.394 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-26 20:28:21.395 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-26 20:28:21.405 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-26 20:28:21.422 +01:00 [DBG] Error Url: /home/error
2019-06-26 20:28:21.432 +01:00 [DBG] Error Id Parameter: errorId
2019-06-26 20:28:38.848 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-26 20:28:38.872 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-26 20:28:38.879 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-26 20:28:38.918 +01:00 [DBG] Start discovery request
2019-06-26 20:28:48.343 +01:00 [INF] Removing 0 grants
2019-06-26 20:29:18.370 +01:00 [INF] Removing 0 grants
2019-06-26 20:29:46.987 +01:00 [INF] AuthenticationScheme: Identity.Application was challenged.
2019-06-26 20:29:48.884 +01:00 [INF] Removing 0 grants
2019-06-26 22:33:24.741 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-26 22:33:24.818 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-26 22:33:24.830 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-26 22:33:24.832 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-26 22:33:24.833 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-26 22:33:24.833 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-26 22:33:25.240 +01:00 [DBG] Starting grant removal
2019-06-26 22:33:27.723 +01:00 [DBG] Login Url: /Account/Login
2019-06-26 22:33:27.747 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-26 22:33:27.748 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-26 22:33:27.833 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-26 22:33:27.901 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-26 22:33:27.953 +01:00 [DBG] Error Url: /home/error
2019-06-26 22:33:27.959 +01:00 [DBG] Error Id Parameter: errorId
2019-06-26 22:33:36.517 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-26 22:33:36.547 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-26 22:33:36.570 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-26 22:33:36.623 +01:00 [DBG] Start discovery request
2019-06-26 22:33:55.461 +01:00 [INF] Removing 0 grants
2019-06-26 22:34:25.478 +01:00 [INF] Removing 0 grants
2019-06-26 22:34:55.483 +01:00 [INF] Removing 0 grants
2019-06-26 22:35:25.514 +01:00 [INF] Removing 0 grants
2019-06-26 22:35:55.535 +01:00 [INF] Removing 0 grants
2019-06-26 22:36:25.551 +01:00 [INF] Removing 0 grants
2019-06-26 22:36:55.556 +01:00 [INF] Removing 0 grants
2019-06-26 22:37:25.566 +01:00 [INF] Removing 0 grants
2019-06-26 22:37:55.569 +01:00 [INF] Removing 0 grants
2019-06-26 22:38:25.743 +01:00 [INF] Removing 0 grants
2019-06-27 00:38:17.074 +01:00 [INF] Removing 0 grants
2019-06-27 00:38:48.922 +01:00 [INF] Removing 0 grants
2019-06-27 00:59:21.476 +01:00 [INF] Removing 0 grants
2019-06-27 00:59:51.495 +01:00 [INF] Removing 0 grants
2019-06-27 03:04:27.240 +01:00 [INF] Removing 0 grants
2019-06-27 03:04:58.291 +01:00 [INF] Removing 0 grants
2019-06-27 03:51:39.861 +01:00 [INF] Removing 0 grants
2019-06-27 03:52:09.877 +01:00 [INF] Removing 0 grants
2019-06-27 05:10:35.919 +01:00 [INF] Removing 0 grants
2019-06-27 05:11:06.433 +01:00 [INF] Removing 0 grants
2019-06-27 08:18:06.268 +01:00 [INF] Removing 0 grants
2019-06-27 08:18:36.349 +01:00 [INF] Removing 0 grants
2019-06-27 08:28:03.064 +01:00 [INF] Removing 0 grants
2019-06-27 08:28:34.506 +01:00 [INF] Removing 0 grants
2019-06-27 08:46:48.717 +01:00 [INF] Removing 0 grants
2019-06-27 08:47:23.283 +01:00 [INF] Removing 0 grants
2019-06-27 09:00:57.054 +01:00 [INF] Removing 0 grants
2019-06-27 09:01:27.108 +01:00 [INF] Removing 0 grants
2019-06-27 09:19:46.353 +01:00 [INF] Removing 0 grants
2019-06-27 09:20:16.390 +01:00 [INF] Removing 0 grants
2019-06-27 09:38:28.431 +01:00 [INF] Removing 0 grants
2019-06-27 09:38:58.445 +01:00 [INF] Removing 0 grants
2019-06-27 09:55:18.664 +01:00 [INF] Removing 0 grants
2019-06-27 09:55:48.681 +01:00 [INF] Removing 0 grants
2019-06-27 09:56:18.724 +01:00 [INF] Removing 0 grants
2019-06-27 09:56:48.754 +01:00 [INF] Removing 0 grants
2019-06-27 09:57:18.777 +01:00 [INF] Removing 0 grants
2019-06-27 09:57:48.796 +01:00 [INF] Removing 0 grants
2019-06-27 09:58:18.811 +01:00 [INF] Removing 0 grants
2019-06-27 09:58:48.833 +01:00 [INF] Removing 0 grants
2019-06-27 09:59:18.837 +01:00 [INF] Removing 0 grants
2019-06-27 09:59:48.854 +01:00 [INF] Removing 0 grants
2019-06-27 10:00:18.920 +01:00 [INF] Removing 0 grants
2019-06-27 10:00:48.992 +01:00 [INF] Removing 0 grants
2019-06-27 10:22:38.550 +01:00 [INF] Removing 0 grants
2019-06-27 10:23:08.556 +01:00 [INF] Removing 0 grants
2019-06-27 10:45:24.162 +01:00 [INF] Removing 0 grants
2019-06-27 10:45:54.202 +01:00 [INF] Removing 0 grants
2019-06-27 11:08:09.363 +01:00 [INF] Removing 0 grants
2019-06-27 11:08:39.383 +01:00 [INF] Removing 0 grants
2019-06-27 11:30:53.504 +01:00 [INF] Removing 0 grants
2019-06-27 11:31:23.535 +01:00 [INF] Removing 0 grants
2019-06-27 11:53:40.297 +01:00 [INF] Removing 0 grants
2019-06-27 11:54:10.308 +01:00 [INF] Removing 0 grants
2019-06-27 12:16:25.434 +01:00 [INF] Removing 0 grants
2019-06-27 12:16:55.460 +01:00 [INF] Removing 0 grants
2019-06-27 12:39:10.259 +01:00 [INF] Removing 0 grants
2019-06-27 12:39:40.269 +01:00 [INF] Removing 0 grants
2019-06-27 13:01:55.339 +01:00 [INF] Removing 0 grants
2019-06-27 13:02:25.345 +01:00 [INF] Removing 0 grants
2019-06-27 13:24:40.348 +01:00 [INF] Removing 0 grants
2019-06-27 13:25:10.377 +01:00 [INF] Removing 0 grants
2019-06-27 13:38:52.220 +01:00 [INF] Removing 0 grants
2019-06-29 01:20:36.084 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 01:20:36.137 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 01:20:36.142 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 01:20:36.142 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 01:20:36.143 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 01:20:36.166 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 01:20:36.527 +01:00 [DBG] Starting grant removal
2019-06-29 01:20:44.123 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 01:20:44.132 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 01:20:44.134 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 01:20:44.135 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 01:20:44.136 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 01:20:44.137 +01:00 [DBG] Error Url: /home/error
2019-06-29 01:20:44.138 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 01:20:44.180 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 01:20:44.196 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 01:20:44.200 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 01:20:44.209 +01:00 [DBG] Start discovery request
2019-06-29 01:21:07.252 +01:00 [INF] Removing 0 grants
2019-06-29 11:34:27.517 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 11:34:27.672 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 11:34:27.685 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 11:34:27.691 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 11:34:27.699 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 11:34:27.704 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 11:34:28.157 +01:00 [DBG] Starting grant removal
2019-06-29 11:34:32.576 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 11:34:32.580 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 11:34:32.582 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 11:34:32.585 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 11:34:32.609 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 11:34:32.619 +01:00 [DBG] Error Url: /home/error
2019-06-29 11:34:32.623 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 11:34:59.215 +01:00 [INF] Removing 0 grants
2019-06-29 11:35:29.562 +01:00 [INF] Removing 0 grants
2019-06-29 11:35:59.814 +01:00 [INF] Removing 0 grants
2019-06-29 11:36:30.089 +01:00 [INF] Removing 0 grants
2019-06-29 11:37:01.244 +01:00 [INF] Removing 0 grants
2019-06-29 11:37:31.260 +01:00 [INF] Removing 0 grants
2019-06-29 11:38:01.298 +01:00 [INF] Removing 0 grants
2019-06-29 11:38:31.477 +01:00 [INF] Removing 0 grants
2019-06-29 11:39:01.599 +01:00 [INF] Removing 0 grants
2019-06-29 11:39:31.674 +01:00 [INF] Removing 0 grants
2019-06-29 11:40:01.687 +01:00 [INF] Removing 0 grants
2019-06-29 11:40:31.914 +01:00 [INF] Removing 0 grants
2019-06-29 11:41:02.097 +01:00 [INF] Removing 0 grants
2019-06-29 11:41:32.913 +01:00 [INF] Removing 0 grants
2019-06-29 11:42:03.360 +01:00 [INF] Removing 0 grants
2019-06-29 11:42:34.794 +01:00 [INF] Removing 0 grants
2019-06-29 11:43:06.090 +01:00 [INF] Removing 0 grants
2019-06-29 11:43:36.158 +01:00 [INF] Removing 0 grants
2019-06-29 11:44:06.277 +01:00 [INF] Removing 0 grants
2019-06-29 11:44:16.006 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 11:44:16.027 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 11:44:16.028 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 11:44:16.034 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 11:44:16.106 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 11:44:16.107 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 11:44:16.124 +01:00 [DBG] Start discovery request
2019-06-29 11:44:16.335 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 11:44:16.369 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 11:44:16.387 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 11:44:16.429 +01:00 [DBG] Start authorize request
2019-06-29 11:44:16.471 +01:00 [DBG] No user present in authorize request
2019-06-29 11:44:16.486 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 11:44:16.540 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 11:44:16.629 +01:00 [ERR] Invalid grant type for client: implicit
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"","State":"21a07d109b7a47569c41c5466edd5d6a","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"21a07d109b7a47569c41c5466edd5d6a","nonce":"f5c754d7a0914841a8fac4417254b375"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 11:44:16.756 +01:00 [ERR] Request validation failed
2019-06-29 11:44:16.765 +01:00 [INF] {"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"","State":"21a07d109b7a47569c41c5466edd5d6a","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"21a07d109b7a47569c41c5466edd5d6a","nonce":"f5c754d7a0914841a8fac4417254b375"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 11:44:36.314 +01:00 [INF] Removing 0 grants
2019-06-29 11:45:06.325 +01:00 [INF] Removing 0 grants
2019-06-29 11:45:36.324 +01:00 [INF] Removing 0 grants
2019-06-29 11:46:06.330 +01:00 [INF] Removing 0 grants
2019-06-29 11:46:36.344 +01:00 [INF] Removing 0 grants
2019-06-29 11:47:06.345 +01:00 [INF] Removing 0 grants
2019-06-29 11:47:36.420 +01:00 [INF] Removing 0 grants
2019-06-29 11:48:06.512 +01:00 [INF] Removing 0 grants
2019-06-29 11:48:36.527 +01:00 [INF] Removing 0 grants
2019-06-29 11:49:06.535 +01:00 [INF] Removing 0 grants
2019-06-29 11:49:36.537 +01:00 [INF] Removing 0 grants
2019-06-29 11:50:06.544 +01:00 [INF] Removing 0 grants
2019-06-29 11:50:36.568 +01:00 [INF] Removing 0 grants
2019-06-29 11:51:06.569 +01:00 [INF] Removing 0 grants
2019-06-29 11:51:36.595 +01:00 [INF] Removing 0 grants
2019-06-29 11:52:06.611 +01:00 [INF] Removing 0 grants
2019-06-29 11:52:36.611 +01:00 [INF] Removing 0 grants
2019-06-29 11:53:06.633 +01:00 [INF] Removing 0 grants
2019-06-29 11:53:36.643 +01:00 [INF] Removing 0 grants
2019-06-29 11:54:06.663 +01:00 [INF] Removing 0 grants
2019-06-29 11:54:36.696 +01:00 [INF] Removing 0 grants
2019-06-29 11:55:06.698 +01:00 [INF] Removing 0 grants
2019-06-29 11:55:36.716 +01:00 [INF] Removing 0 grants
2019-06-29 11:56:06.714 +01:00 [INF] Removing 0 grants
2019-06-29 11:56:36.749 +01:00 [INF] Removing 0 grants
2019-06-29 11:57:06.751 +01:00 [INF] Removing 0 grants
2019-06-29 11:57:36.766 +01:00 [INF] Removing 0 grants
2019-06-29 11:58:06.769 +01:00 [INF] Removing 0 grants
2019-06-29 11:58:39.965 +01:00 [INF] Removing 0 grants
2019-06-29 11:59:09.975 +01:00 [INF] Removing 0 grants
2019-06-29 12:16:56.314 +01:00 [INF] Removing 0 grants
2019-06-29 12:17:26.339 +01:00 [INF] Removing 0 grants
2019-06-29 12:17:56.346 +01:00 [INF] Removing 0 grants
2019-06-29 12:18:26.387 +01:00 [INF] Removing 0 grants
2019-06-29 12:19:11.942 +01:00 [INF] Removing 0 grants
2019-06-29 12:19:41.961 +01:00 [INF] Removing 0 grants
2019-06-29 13:01:24.944 +01:00 [INF] Removing 0 grants
2019-06-29 13:01:55.117 +01:00 [INF] Removing 0 grants
2019-06-29 13:02:26.676 +01:00 [INF] Removing 0 grants
2019-06-29 13:02:56.691 +01:00 [INF] Removing 0 grants
2019-06-29 13:05:33.115 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 13:06:31.540 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 13:06:31.541 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 13:06:31.541 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 13:06:31.542 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 13:06:31.543 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 13:06:31.739 +01:00 [DBG] Starting grant removal
2019-06-29 13:06:33.301 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 13:06:33.306 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 13:06:33.307 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 13:06:33.309 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 13:06:33.310 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 13:06:33.311 +01:00 [DBG] Error Url: /home/error
2019-06-29 13:06:33.313 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 13:06:46.407 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:06:46.462 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:06:46.468 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:06:46.479 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:06:46.496 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:06:46.499 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:06:46.509 +01:00 [DBG] Start discovery request
2019-06-29 13:06:46.662 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 13:06:46.674 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 13:06:46.675 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 13:06:46.691 +01:00 [DBG] Start authorize request
2019-06-29 13:06:46.701 +01:00 [DBG] No user present in authorize request
2019-06-29 13:06:46.707 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:06:46.739 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:06:46.772 +01:00 [ERR] Client requested access token - but client is not configured to receive access tokens via browser
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"","State":"ebbf8e1d15f0419e9f2e5b56c7405674","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"ebbf8e1d15f0419e9f2e5b56c7405674","nonce":"5722c4c0531949f9b157402d0114d99e"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:06:46.820 +01:00 [ERR] Request validation failed
2019-06-29 13:06:46.832 +01:00 [INF] {"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"","State":"ebbf8e1d15f0419e9f2e5b56c7405674","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"ebbf8e1d15f0419e9f2e5b56c7405674","nonce":"5722c4c0531949f9b157402d0114d99e"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:07:01.856 +01:00 [INF] Removing 0 grants
2019-06-29 13:07:31.860 +01:00 [INF] Removing 0 grants
2019-06-29 13:10:00.400 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 13:10:03.638 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 13:10:03.639 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 13:10:03.639 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 13:10:03.640 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 13:10:03.640 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 13:10:03.866 +01:00 [DBG] Starting grant removal
2019-06-29 13:10:05.458 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 13:10:05.590 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 13:10:05.629 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 13:10:05.658 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 13:10:05.659 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 13:10:05.665 +01:00 [DBG] Error Url: /home/error
2019-06-29 13:10:05.677 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 13:10:34.299 +01:00 [INF] Removing 0 grants
2019-06-29 13:11:09.355 +01:00 [INF] Removing 0 grants
2019-06-29 13:11:39.385 +01:00 [INF] Removing 0 grants
2019-06-29 13:12:09.419 +01:00 [INF] Removing 0 grants
2019-06-29 13:12:39.437 +01:00 [INF] Removing 0 grants
2019-06-29 13:13:04.607 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:13:04.633 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:13:04.636 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:13:04.643 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:13:04.660 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:13:04.664 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:13:04.670 +01:00 [DBG] Start discovery request
2019-06-29 13:13:04.830 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 13:13:04.918 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 13:13:04.939 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 13:13:04.969 +01:00 [DBG] Start authorize request
2019-06-29 13:13:05.004 +01:00 [DBG] No user present in authorize request
2019-06-29 13:13:05.018 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:13:05.057 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:13:05.126 +01:00 [ERR] Invalid scope: email
2019-06-29 13:13:05.144 +01:00 [ERR] Request validation failed
2019-06-29 13:13:05.174 +01:00 [INF] {"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"e5478654a763458a9c0b994456f97142","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"e5478654a763458a9c0b994456f97142","nonce":"98dd7fa57d1243169f34e4f9045f806d"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:13:09.459 +01:00 [INF] Removing 0 grants
2019-06-29 13:13:39.478 +01:00 [INF] Removing 0 grants
2019-06-29 13:14:09.511 +01:00 [INF] Removing 0 grants
2019-06-29 13:15:03.377 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 13:15:03.423 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 13:15:03.423 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 13:15:03.424 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 13:15:03.425 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 13:15:03.425 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 13:15:03.721 +01:00 [DBG] Starting grant removal
2019-06-29 13:15:05.493 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 13:15:05.516 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 13:15:05.521 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 13:15:05.533 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 13:15:05.550 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 13:15:05.554 +01:00 [DBG] Error Url: /home/error
2019-06-29 13:15:05.577 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 13:15:34.981 +01:00 [INF] Removing 0 grants
2019-06-29 13:15:43.088 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:15:43.118 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:15:43.127 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:15:43.133 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:15:43.179 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:15:43.195 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:15:43.230 +01:00 [DBG] Start discovery request
2019-06-29 13:15:43.382 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 13:15:43.401 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 13:15:43.412 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 13:15:43.425 +01:00 [DBG] Start authorize request
2019-06-29 13:15:43.440 +01:00 [DBG] No user present in authorize request
2019-06-29 13:15:43.460 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:15:43.512 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:15:43.567 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:15:43.606 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"805b54e763f34c829b8dceb49eec8e26","UiLocales":null,"Nonce":"029177bbfd3d4ab482c6a8caf019135e","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"805b54e763f34c829b8dceb49eec8e26","nonce":"029177bbfd3d4ab482c6a8caf019135e"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:15:43.812 +01:00 [INF] Showing login: User is not authenticated
2019-06-29 13:15:43.912 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:15:43.913 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:15:43.923 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:15:43.931 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:16:00.347 +01:00 [DBG] CORS request made for path: /Account/Login from origin: null but was ignored because path was not for an allowed IdentityServer CORS endpoint
2019-06-29 13:16:00.418 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:16:00.419 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:16:00.440 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:16:00.738 +01:00 [WRN] Invalid password for user 757684ef-74a9-40eb-b2e1-cfb480e69209.
2019-06-29 13:16:00.757 +01:00 [WRN] User 757684ef-74a9-40eb-b2e1-cfb480e69209 failed to provide the correct password.
2019-06-29 13:16:01.246 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:16:01.249 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:16:01.256 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:16:01.257 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:16:05.441 +01:00 [INF] Removing 0 grants
2019-06-29 13:16:35.446 +01:00 [INF] Removing 0 grants
2019-06-29 13:17:04.002 +01:00 [DBG] CORS request made for path: /Account/Login from origin: null but was ignored because path was not for an allowed IdentityServer CORS endpoint
2019-06-29 13:17:04.006 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:17:04.011 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:04.014 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:17:04.472 +01:00 [DBG] Augmenting SignInContext
2019-06-29 13:17:04.485 +01:00 [DBG] Adding idp claim with value: local
2019-06-29 13:17:04.497 +01:00 [DBG] Adding amr claim with value: pwd
2019-06-29 13:17:04.499 +01:00 [DBG] Adding auth_time claim with value: 1561810624
2019-06-29 13:17:04.527 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 13:17:04.534 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:04.559 +01:00 [DBG] Request path /connect/authorize/callback matched to endpoint type Authorize
2019-06-29 13:17:04.562 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint
2019-06-29 13:17:04.563 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint for /connect/authorize/callback
2019-06-29 13:17:04.572 +01:00 [DBG] Start authorize callback request
2019-06-29 13:17:04.596 +01:00 [DBG] User in authorize request: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:17:04.603 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:17:04.604 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:04.606 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:17:04.611 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"805b54e763f34c829b8dceb49eec8e26","UiLocales":null,"Nonce":"029177bbfd3d4ab482c6a8caf019135e","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":"1dc961c13814c3ec6db083506a105911","Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"805b54e763f34c829b8dceb49eec8e26","nonce":"029177bbfd3d4ab482c6a8caf019135e"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:17:04.793 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= found in database: false
2019-06-29 13:17:04.805 +01:00 [DBG] user_consent grant with value: AngularClientApp|757684ef-74a9-40eb-b2e1-cfb480e69209 not found in store.
2019-06-29 13:17:04.806 +01:00 [DBG] Found no prior consent from consent store, consent is required
2019-06-29 13:17:04.808 +01:00 [INF] Showing consent: User has not yet consented
2019-06-29 13:17:04.889 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:17:04.905 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:04.909 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:17:04.912 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:05.497 +01:00 [INF] Removing 0 grants
2019-06-29 13:17:11.091 +01:00 [DBG] CORS request made for path: /consent from origin: null but was ignored because path was not for an allowed IdentityServer CORS endpoint
2019-06-29 13:17:11.158 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:17:11.160 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:11.173 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:17:11.205 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:11.219 +01:00 [DBG] Request path /connect/authorize/callback matched to endpoint type Authorize
2019-06-29 13:17:11.222 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint
2019-06-29 13:17:11.277 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint for /connect/authorize/callback
2019-06-29 13:17:11.280 +01:00 [DBG] Start authorize callback request
2019-06-29 13:17:11.306 +01:00 [DBG] User in authorize request: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:17:11.337 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:17:11.338 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:11.368 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:17:11.397 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"805b54e763f34c829b8dceb49eec8e26","UiLocales":null,"Nonce":"029177bbfd3d4ab482c6a8caf019135e","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":"1dc961c13814c3ec6db083506a105911","Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"805b54e763f34c829b8dceb49eec8e26","nonce":"029177bbfd3d4ab482c6a8caf019135e"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:17:11.495 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= found in database: false
2019-06-29 13:17:11.498 +01:00 [DBG] user_consent grant with value: AngularClientApp|757684ef-74a9-40eb-b2e1-cfb480e69209 not found in store.
2019-06-29 13:17:11.499 +01:00 [DBG] Found no prior consent from consent store, consent is required
2019-06-29 13:17:11.509 +01:00 [INF] User consented to scopes: ["openid","profile","email"]
2019-06-29 13:17:11.523 +01:00 [DBG] User indicated to remember consent for scopes: ["openid","profile","email"]
2019-06-29 13:17:11.535 +01:00 [DBG] Client allows remembering consent, and consent given. Updating consent store for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:17:11.575 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= not found in database
2019-06-29 13:17:12.054 +01:00 [DBG] Creating Implicit Flow response.
2019-06-29 13:17:12.069 +01:00 [DBG] Getting claims for access token for client: AngularClientApp
2019-06-29 13:17:12.072 +01:00 [DBG] Getting claims for access token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:17:12.358 +01:00 [DBG] Getting claims for identity token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209 and client: AngularClientApp
2019-06-29 13:17:12.359 +01:00 [DBG] In addition to an id_token, an access_token was requested. No claims other than sub are included in the id_token. To obtain more user claims, either use the user info endpoint or set AlwaysIncludeUserClaimsInIdToken on the client configuration.
2019-06-29 13:17:12.386 +01:00 [INF] Authorize endpoint response
{"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ClientId":"AngularClientApp","RedirectUri":"http://localhost:4200/auth-callback","State":"805b54e763f34c829b8dceb49eec8e26","Scope":"openid profile email","Error":null,"ErrorDescription":null,"$type":"AuthorizeResponseLog"}
2019-06-29 13:17:12.420 +01:00 [DBG] Augmenting SignInContext
2019-06-29 13:17:12.423 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 13:17:14.757 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:17:14.799 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:17:14.825 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:17:14.938 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:17:15.084 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:17:15.166 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:17:15.208 +01:00 [DBG] Start discovery request
2019-06-29 13:17:15.455 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration/jwks from origin: http://localhost:4200
2019-06-29 13:17:15.756 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:17:15.874 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:17:15.913 +01:00 [DBG] Request path /.well-known/openid-configuration/jwks matched to endpoint type Discovery
2019-06-29 13:17:16.208 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryKeyEndpoint
2019-06-29 13:17:16.211 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryKeyEndpoint for /.well-known/openid-configuration/jwks
2019-06-29 13:17:16.217 +01:00 [DBG] Start key discovery request
2019-06-29 13:17:16.291 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:17:16.295 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:17:16.297 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:17:16.596 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:17:16.624 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:17:16.662 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:17:16.664 +01:00 [DBG] Request path /connect/userinfo matched to endpoint type Userinfo
2019-06-29 13:17:16.669 +01:00 [DBG] Endpoint enabled: Userinfo, successfully created handler: IdentityServer4.Endpoints.UserInfoEndpoint
2019-06-29 13:17:16.677 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.UserInfoEndpoint for /connect/userinfo
2019-06-29 13:17:16.716 +01:00 [DBG] Start userinfo request
2019-06-29 13:17:16.738 +01:00 [DBG] Bearer token found in header
2019-06-29 13:17:16.842 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:16.867 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:17:17.059 +01:00 [DBG] Calling into custom token validator: IdentityServer4.Validation.DefaultCustomTokenValidator
2019-06-29 13:17:17.079 +01:00 [DBG] Token validation success
{"ClientId":null,"ClientName":null,"ValidateLifetime":true,"AccessTokenType":"Jwt","ExpectedScope":"openid","TokenHandle":null,"JwtId":null,"Claims":{"nbf":1561810632,"exp":1561814232,"iss":"http://localhost:5000","aud":"http://localhost:5000/resources","client_id":"AngularClientApp","sub":"757684ef-74a9-40eb-b2e1-cfb480e69209","auth_time":1561810624,"idp":"local","scope":["openid","profile","email"],"amr":"pwd"},"$type":"TokenValidationLog"}
2019-06-29 13:17:17.107 +01:00 [DBG] Creating userinfo response
2019-06-29 13:17:17.121 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:17:17.128 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:17:17.156 +01:00 [DBG] Requested claim types: sub name family_name given_name middle_name nickname preferred_username profile picture website gender birthdate zoneinfo locale updated_at email email_verified
2019-06-29 13:17:17.169 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:17:17.215 +01:00 [INF] Profile service returned the following claim types: sub name given_name family_name email email_verified website preferred_username
2019-06-29 13:17:17.274 +01:00 [DBG] End userinfo request
2019-06-29 13:17:17.615 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 13:17:17.774 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 13:17:17.804 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 13:17:17.837 +01:00 [DBG] Rendering check session result
2019-06-29 13:17:35.633 +01:00 [INF] Removing 0 grants
2019-06-29 13:18:05.671 +01:00 [INF] Removing 0 grants
2019-06-29 13:18:35.708 +01:00 [INF] Removing 0 grants
2019-06-29 13:19:05.719 +01:00 [INF] Removing 0 grants
2019-06-29 13:19:35.724 +01:00 [INF] Removing 0 grants
2019-06-29 13:20:05.765 +01:00 [INF] Removing 0 grants
2019-06-29 13:44:13.439 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 13:44:13.477 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 13:44:13.479 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 13:44:13.480 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 13:44:13.480 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 13:44:13.481 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 13:44:13.591 +01:00 [DBG] Starting grant removal
2019-06-29 13:44:14.580 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 13:44:14.734 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 13:44:14.735 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 13:44:14.780 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 13:44:14.781 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 13:44:14.785 +01:00 [DBG] Error Url: /home/error
2019-06-29 13:44:14.787 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 13:44:33.994 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:44:34.120 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:34.193 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:34.243 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:44:34.375 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:44:34.441 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:44:34.483 +01:00 [DBG] Start discovery request
2019-06-29 13:44:34.711 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 13:44:34.791 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 13:44:34.799 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 13:44:34.811 +01:00 [DBG] Rendering check session result
2019-06-29 13:44:39.037 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 13:44:39.080 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 13:44:39.089 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 13:44:39.117 +01:00 [DBG] Start authorize request
2019-06-29 13:44:39.150 +01:00 [DBG] User in authorize request: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:44:39.159 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:44:39.189 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:44:39.228 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:44:39.283 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"b5badc6200064c668153b90045bdf262","UiLocales":null,"Nonce":"9833ff9d218442a9a1de3b7b0f37b753","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":"1dc961c13814c3ec6db083506a105911","Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"b5badc6200064c668153b90045bdf262","nonce":"9833ff9d218442a9a1de3b7b0f37b753"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:44:40.003 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= found in database: true
2019-06-29 13:44:40.041 +01:00 [DBG] Consent found in consent store is same as current request, consent is not required
2019-06-29 13:44:40.070 +01:00 [DBG] Creating Implicit Flow response.
2019-06-29 13:44:40.098 +01:00 [DBG] Getting claims for access token for client: AngularClientApp
2019-06-29 13:44:40.107 +01:00 [DBG] Getting claims for access token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:44:40.481 +01:00 [DBG] Getting claims for identity token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209 and client: AngularClientApp
2019-06-29 13:44:40.489 +01:00 [DBG] In addition to an id_token, an access_token was requested. No claims other than sub are included in the id_token. To obtain more user claims, either use the user info endpoint or set AlwaysIncludeUserClaimsInIdToken on the client configuration.
2019-06-29 13:44:40.513 +01:00 [INF] Authorize endpoint response
{"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ClientId":"AngularClientApp","RedirectUri":"http://localhost:4200/auth-callback","State":"b5badc6200064c668153b90045bdf262","Scope":"openid profile email","Error":null,"ErrorDescription":null,"$type":"AuthorizeResponseLog"}
2019-06-29 13:44:42.144 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:44:42.341 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:42.452 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:42.495 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:44:42.527 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:44:42.562 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:44:42.572 +01:00 [DBG] Start discovery request
2019-06-29 13:44:42.577 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:44:42.601 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:42.604 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:42.616 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:44:42.619 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:44:42.621 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:44:42.640 +01:00 [DBG] Start discovery request
2019-06-29 13:44:42.748 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 13:44:42.790 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration/jwks from origin: http://localhost:4200
2019-06-29 13:44:42.792 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 13:44:42.795 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:42.803 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:42.804 +01:00 [DBG] Request path /.well-known/openid-configuration/jwks matched to endpoint type Discovery
2019-06-29 13:44:42.818 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryKeyEndpoint
2019-06-29 13:44:42.825 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryKeyEndpoint for /.well-known/openid-configuration/jwks
2019-06-29 13:44:42.830 +01:00 [DBG] Start key discovery request
2019-06-29 13:44:42.859 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 13:44:42.864 +01:00 [DBG] Rendering check session result
2019-06-29 13:44:42.953 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:44:43.020 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:43.062 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:43.092 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:44:43.094 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:44:43.096 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:44:43.097 +01:00 [DBG] Request path /connect/userinfo matched to endpoint type Userinfo
2019-06-29 13:44:43.102 +01:00 [DBG] Endpoint enabled: Userinfo, successfully created handler: IdentityServer4.Endpoints.UserInfoEndpoint
2019-06-29 13:44:43.103 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.UserInfoEndpoint for /connect/userinfo
2019-06-29 13:44:43.125 +01:00 [DBG] Start userinfo request
2019-06-29 13:44:43.155 +01:00 [DBG] Bearer token found in header
2019-06-29 13:44:43.237 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:44:43.241 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:44:43.252 +01:00 [DBG] Calling into custom token validator: IdentityServer4.Validation.DefaultCustomTokenValidator
2019-06-29 13:44:43.256 +01:00 [DBG] Token validation success
{"ClientId":null,"ClientName":null,"ValidateLifetime":true,"AccessTokenType":"Jwt","ExpectedScope":"openid","TokenHandle":null,"JwtId":null,"Claims":{"nbf":1561812280,"exp":1561815880,"iss":"http://localhost:5000","aud":"http://localhost:5000/resources","client_id":"AngularClientApp","sub":"757684ef-74a9-40eb-b2e1-cfb480e69209","auth_time":1561810624,"idp":"local","scope":["openid","profile","email"],"amr":"pwd"},"$type":"TokenValidationLog"}
2019-06-29 13:44:43.287 +01:00 [DBG] Creating userinfo response
2019-06-29 13:44:43.306 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:44:43.332 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:44:43.358 +01:00 [DBG] Requested claim types: sub name family_name given_name middle_name nickname preferred_username profile picture website gender birthdate zoneinfo locale updated_at email email_verified
2019-06-29 13:44:43.376 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:44:43.394 +01:00 [INF] Profile service returned the following claim types: sub name given_name family_name email email_verified website preferred_username
2019-06-29 13:44:43.397 +01:00 [DBG] End userinfo request
2019-06-29 13:44:43.613 +01:00 [INF] Removing 0 grants
2019-06-29 13:45:13.633 +01:00 [INF] Removing 0 grants
2019-06-29 13:45:43.655 +01:00 [INF] Removing 0 grants
2019-06-29 13:46:13.659 +01:00 [INF] Removing 0 grants
2019-06-29 13:46:43.668 +01:00 [INF] Removing 0 grants
2019-06-29 13:47:13.672 +01:00 [INF] Removing 0 grants
2019-06-29 13:47:43.672 +01:00 [INF] Removing 0 grants
2019-06-29 13:48:13.701 +01:00 [INF] Removing 0 grants
2019-06-29 13:48:43.721 +01:00 [INF] Removing 0 grants
2019-06-29 13:49:13.803 +01:00 [INF] Removing 0 grants
2019-06-29 13:49:43.836 +01:00 [INF] Removing 0 grants
2019-06-29 13:50:13.839 +01:00 [INF] Removing 0 grants
2019-06-29 13:50:43.843 +01:00 [INF] Removing 0 grants
2019-06-29 13:51:13.845 +01:00 [INF] Removing 0 grants
2019-06-29 13:51:43.879 +01:00 [INF] Removing 0 grants
2019-06-29 13:52:13.888 +01:00 [INF] Removing 0 grants
2019-06-29 13:52:26.954 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:52:27.086 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:52:27.177 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:52:27.205 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:52:27.250 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:52:27.276 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:52:27.312 +01:00 [DBG] Start discovery request
2019-06-29 13:52:27.578 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 13:52:27.602 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 13:52:27.674 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 13:52:27.690 +01:00 [DBG] Rendering check session result
2019-06-29 13:52:43.895 +01:00 [INF] Removing 0 grants
2019-06-29 13:53:02.887 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:53:02.918 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:53:02.920 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:53:02.921 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:53:02.935 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:53:02.938 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:53:02.940 +01:00 [DBG] Start discovery request
2019-06-29 13:53:02.959 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 13:53:02.974 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 13:53:03.046 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 13:53:03.057 +01:00 [DBG] Start authorize request
2019-06-29 13:53:03.059 +01:00 [DBG] No user present in authorize request
2019-06-29 13:53:03.059 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:53:03.063 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:03.065 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:53:03.081 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"792ffd56c5994a229aa477eae2e06eaf","UiLocales":null,"Nonce":"5114b131679542c5a8fd1a2c2f1eecf0","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"792ffd56c5994a229aa477eae2e06eaf","nonce":"5114b131679542c5a8fd1a2c2f1eecf0"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:53:03.115 +01:00 [INF] Showing login: User is not authenticated
2019-06-29 13:53:03.246 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:53:03.247 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:03.261 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:53:03.287 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:13.897 +01:00 [INF] Removing 0 grants
2019-06-29 13:53:19.221 +01:00 [DBG] CORS request made for path: /Account/Login from origin: null but was ignored because path was not for an allowed IdentityServer CORS endpoint
2019-06-29 13:53:19.312 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:53:19.314 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:19.315 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:53:19.470 +01:00 [DBG] Augmenting SignInContext
2019-06-29 13:53:19.490 +01:00 [DBG] Adding idp claim with value: local
2019-06-29 13:53:19.491 +01:00 [DBG] Adding amr claim with value: pwd
2019-06-29 13:53:19.493 +01:00 [DBG] Adding auth_time claim with value: 1561812799
2019-06-29 13:53:19.511 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 13:53:19.578 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:19.647 +01:00 [DBG] Request path /connect/authorize/callback matched to endpoint type Authorize
2019-06-29 13:53:19.702 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint
2019-06-29 13:53:19.717 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint for /connect/authorize/callback
2019-06-29 13:53:19.748 +01:00 [DBG] Start authorize callback request
2019-06-29 13:53:19.757 +01:00 [DBG] User in authorize request: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:53:19.785 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 13:53:19.817 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:19.852 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 13:53:19.879 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"792ffd56c5994a229aa477eae2e06eaf","UiLocales":null,"Nonce":"5114b131679542c5a8fd1a2c2f1eecf0","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":"b0b03c7b402c008f6b3a52d21124c2c8","Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"792ffd56c5994a229aa477eae2e06eaf","nonce":"5114b131679542c5a8fd1a2c2f1eecf0"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 13:53:19.975 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= found in database: true
2019-06-29 13:53:19.992 +01:00 [DBG] Consent found in consent store is same as current request, consent is not required
2019-06-29 13:53:20.000 +01:00 [DBG] Creating Implicit Flow response.
2019-06-29 13:53:20.000 +01:00 [DBG] Getting claims for access token for client: AngularClientApp
2019-06-29 13:53:20.001 +01:00 [DBG] Getting claims for access token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 13:53:20.039 +01:00 [DBG] Getting claims for identity token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209 and client: AngularClientApp
2019-06-29 13:53:20.053 +01:00 [DBG] In addition to an id_token, an access_token was requested. No claims other than sub are included in the id_token. To obtain more user claims, either use the user info endpoint or set AlwaysIncludeUserClaimsInIdToken on the client configuration.
2019-06-29 13:53:20.069 +01:00 [INF] Authorize endpoint response
{"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ClientId":"AngularClientApp","RedirectUri":"http://localhost:4200/auth-callback","State":"792ffd56c5994a229aa477eae2e06eaf","Scope":"openid profile email","Error":null,"ErrorDescription":null,"$type":"AuthorizeResponseLog"}
2019-06-29 13:53:20.087 +01:00 [DBG] Augmenting SignInContext
2019-06-29 13:53:20.089 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 13:53:21.810 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 13:53:21.948 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:53:22.179 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:53:22.295 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 13:53:22.441 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 13:53:22.461 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 13:53:22.516 +01:00 [DBG] Start discovery request
2019-06-29 13:53:22.626 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration/jwks from origin: http://localhost:4200
2019-06-29 13:53:22.643 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:53:22.672 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:53:22.685 +01:00 [DBG] Request path /.well-known/openid-configuration/jwks matched to endpoint type Discovery
2019-06-29 13:53:22.707 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryKeyEndpoint
2019-06-29 13:53:22.735 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryKeyEndpoint for /.well-known/openid-configuration/jwks
2019-06-29 13:53:22.782 +01:00 [DBG] Start key discovery request
2019-06-29 13:53:22.992 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:53:23.046 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:53:23.052 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:53:23.074 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 13:53:23.086 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 13:53:23.088 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 13:53:23.089 +01:00 [DBG] Request path /connect/userinfo matched to endpoint type Userinfo
2019-06-29 13:53:23.093 +01:00 [DBG] Endpoint enabled: Userinfo, successfully created handler: IdentityServer4.Endpoints.UserInfoEndpoint
2019-06-29 13:53:23.097 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.UserInfoEndpoint for /connect/userinfo
2019-06-29 13:53:23.101 +01:00 [DBG] Start userinfo request
2019-06-29 13:53:23.103 +01:00 [DBG] Bearer token found in header
2019-06-29 13:53:23.106 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:23.109 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 13:53:23.141 +01:00 [DBG] Calling into custom token validator: IdentityServer4.Validation.DefaultCustomTokenValidator
2019-06-29 13:53:23.144 +01:00 [DBG] Token validation success
{"ClientId":null,"ClientName":null,"ValidateLifetime":true,"AccessTokenType":"Jwt","ExpectedScope":"openid","TokenHandle":null,"JwtId":null,"Claims":{"nbf":1561812800,"exp":1561816400,"iss":"http://localhost:5000","aud":"http://localhost:5000/resources","client_id":"AngularClientApp","sub":"757684ef-74a9-40eb-b2e1-cfb480e69209","auth_time":1561812799,"idp":"local","scope":["openid","profile","email"],"amr":"pwd"},"$type":"TokenValidationLog"}
2019-06-29 13:53:23.207 +01:00 [DBG] Creating userinfo response
2019-06-29 13:53:23.208 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:53:23.208 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:53:23.210 +01:00 [DBG] Requested claim types: sub name family_name given_name middle_name nickname preferred_username profile picture website gender birthdate zoneinfo locale updated_at email email_verified
2019-06-29 13:53:23.213 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 13:53:23.224 +01:00 [INF] Profile service returned the following claim types: sub name given_name family_name email email_verified website preferred_username
2019-06-29 13:53:23.236 +01:00 [DBG] End userinfo request
2019-06-29 13:53:23.317 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 13:53:23.324 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 13:53:23.362 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 13:53:23.381 +01:00 [DBG] Rendering check session result
2019-06-29 13:53:43.911 +01:00 [INF] Removing 0 grants
2019-06-29 13:54:13.912 +01:00 [INF] Removing 0 grants
2019-06-29 13:54:43.916 +01:00 [INF] Removing 0 grants
2019-06-29 13:55:13.956 +01:00 [INF] Removing 0 grants
2019-06-29 13:55:43.969 +01:00 [INF] Removing 0 grants
2019-06-29 13:56:13.997 +01:00 [INF] Removing 0 grants
2019-06-29 13:56:44.013 +01:00 [INF] Removing 0 grants
2019-06-29 13:57:14.009 +01:00 [INF] Removing 0 grants
2019-06-29 13:57:44.021 +01:00 [INF] Removing 0 grants
2019-06-29 13:58:14.030 +01:00 [INF] Removing 0 grants
2019-06-29 13:58:44.031 +01:00 [INF] Removing 0 grants
2019-06-29 13:59:14.046 +01:00 [INF] Removing 0 grants
2019-06-29 13:59:44.038 +01:00 [INF] Removing 0 grants
2019-06-29 14:00:14.047 +01:00 [INF] Removing 0 grants
2019-06-29 14:00:44.058 +01:00 [INF] Removing 0 grants
2019-06-29 14:01:14.077 +01:00 [INF] Removing 0 grants
2019-06-29 14:01:44.078 +01:00 [INF] Removing 0 grants
2019-06-29 14:02:14.100 +01:00 [INF] Removing 0 grants
2019-06-29 14:02:44.103 +01:00 [INF] Removing 0 grants
2019-06-29 14:03:14.130 +01:00 [INF] Removing 0 grants
2019-06-29 14:03:44.143 +01:00 [INF] Removing 0 grants
2019-06-29 14:04:14.149 +01:00 [INF] Removing 0 grants
2019-06-29 14:04:44.174 +01:00 [INF] Removing 0 grants
2019-06-29 14:05:14.184 +01:00 [INF] Removing 0 grants
2019-06-29 14:05:44.225 +01:00 [INF] Removing 0 grants
2019-06-29 14:06:14.290 +01:00 [INF] Removing 0 grants
2019-06-29 14:06:44.306 +01:00 [INF] Removing 0 grants
2019-06-29 14:07:14.310 +01:00 [INF] Removing 0 grants
2019-06-29 14:07:44.337 +01:00 [INF] Removing 0 grants
2019-06-29 14:08:14.367 +01:00 [INF] Removing 0 grants
2019-06-29 14:08:44.378 +01:00 [INF] Removing 0 grants
2019-06-29 14:09:14.383 +01:00 [INF] Removing 0 grants
2019-06-29 14:09:44.392 +01:00 [INF] Removing 0 grants
2019-06-29 14:09:59.554 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:09:59.735 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:09:59.975 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:00.077 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:10:00.215 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:10:00.248 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:10:00.281 +01:00 [DBG] Start discovery request
2019-06-29 14:10:00.394 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 14:10:00.522 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 14:10:00.585 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 14:10:00.588 +01:00 [DBG] Rendering check session result
2019-06-29 14:10:06.558 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:10:06.670 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:06.912 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:07.007 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:10:07.166 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:10:07.319 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:10:07.578 +01:00 [DBG] Start discovery request
2019-06-29 14:10:07.786 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 14:10:07.797 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 14:10:07.799 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 14:10:07.832 +01:00 [DBG] Rendering check session result
2019-06-29 14:10:14.391 +01:00 [INF] Removing 0 grants
2019-06-29 14:10:20.364 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:10:20.394 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:20.398 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:20.400 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:10:20.418 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:10:20.420 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:10:20.422 +01:00 [DBG] Start discovery request
2019-06-29 14:10:20.451 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 14:10:20.468 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 14:10:20.479 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 14:10:20.482 +01:00 [DBG] Start authorize request
2019-06-29 14:10:20.493 +01:00 [DBG] No user present in authorize request
2019-06-29 14:10:20.494 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 14:10:20.496 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:20.499 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 14:10:20.501 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"fe49c826fb4f46c6b149d4d1a2a24e60","UiLocales":null,"Nonce":"6f212568f1ab4907840ce301474f4465","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"fe49c826fb4f46c6b149d4d1a2a24e60","nonce":"6f212568f1ab4907840ce301474f4465"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 14:10:20.540 +01:00 [INF] Showing login: User is not authenticated
2019-06-29 14:10:20.557 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 14:10:20.557 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:20.562 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 14:10:20.564 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:40.401 +01:00 [DBG] CORS request made for path: /Account/Login from origin: null but was ignored because path was not for an allowed IdentityServer CORS endpoint
2019-06-29 14:10:40.431 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 14:10:40.434 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:40.446 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 14:10:40.520 +01:00 [DBG] Augmenting SignInContext
2019-06-29 14:10:40.534 +01:00 [DBG] Adding idp claim with value: local
2019-06-29 14:10:40.536 +01:00 [DBG] Adding amr claim with value: pwd
2019-06-29 14:10:40.537 +01:00 [DBG] Adding auth_time claim with value: 1561813840
2019-06-29 14:10:40.548 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 14:10:40.554 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:40.570 +01:00 [DBG] Request path /connect/authorize/callback matched to endpoint type Authorize
2019-06-29 14:10:40.572 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint
2019-06-29 14:10:40.574 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeCallbackEndpoint for /connect/authorize/callback
2019-06-29 14:10:40.594 +01:00 [DBG] Start authorize callback request
2019-06-29 14:10:40.611 +01:00 [DBG] User in authorize request: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 14:10:40.639 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 14:10:40.650 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:40.652 +01:00 [DBG] Calling into custom validator: IdentityServer4.Validation.DefaultCustomAuthorizeRequestValidator
2019-06-29 14:10:40.654 +01:00 [INF] ValidatedAuthorizeRequest
{"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email","State":"fe49c826fb4f46c6b149d4d1a2a24e60","UiLocales":null,"Nonce":"6f212568f1ab4907840ce301474f4465","AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":"92d8d503fde85302464dd536dd2b5d58","Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email","state":"fe49c826fb4f46c6b149d4d1a2a24e60","nonce":"6f212568f1ab4907840ce301474f4465"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 14:10:40.692 +01:00 [DBG] DYKQScb3gchS+NfAAVgKdvNY97cU5kW8HW7ZM0phFCs= found in database: true
2019-06-29 14:10:40.699 +01:00 [DBG] Consent found in consent store is same as current request, consent is not required
2019-06-29 14:10:40.709 +01:00 [DBG] Creating Implicit Flow response.
2019-06-29 14:10:40.710 +01:00 [DBG] Getting claims for access token for client: AngularClientApp
2019-06-29 14:10:40.712 +01:00 [DBG] Getting claims for access token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209
2019-06-29 14:10:40.727 +01:00 [DBG] Getting claims for identity token for subject: 757684ef-74a9-40eb-b2e1-cfb480e69209 and client: AngularClientApp
2019-06-29 14:10:40.737 +01:00 [DBG] In addition to an id_token, an access_token was requested. No claims other than sub are included in the id_token. To obtain more user claims, either use the user info endpoint or set AlwaysIncludeUserClaimsInIdToken on the client configuration.
2019-06-29 14:10:40.747 +01:00 [INF] Authorize endpoint response
{"SubjectId":"757684ef-74a9-40eb-b2e1-cfb480e69209","ClientId":"AngularClientApp","RedirectUri":"http://localhost:4200/auth-callback","State":"fe49c826fb4f46c6b149d4d1a2a24e60","Scope":"openid profile email","Error":null,"ErrorDescription":null,"$type":"AuthorizeResponseLog"}
2019-06-29 14:10:40.757 +01:00 [DBG] Augmenting SignInContext
2019-06-29 14:10:40.759 +01:00 [INF] AuthenticationScheme: Identity.Application signed in.
2019-06-29 14:10:42.307 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:10:42.534 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:42.727 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:42.880 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:10:42.985 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:10:43.049 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:10:43.211 +01:00 [DBG] Start discovery request
2019-06-29 14:10:43.440 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration/jwks from origin: http://localhost:4200
2019-06-29 14:10:43.527 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:43.542 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:43.545 +01:00 [DBG] Request path /.well-known/openid-configuration/jwks matched to endpoint type Discovery
2019-06-29 14:10:43.548 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryKeyEndpoint
2019-06-29 14:10:43.550 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryKeyEndpoint for /.well-known/openid-configuration/jwks
2019-06-29 14:10:43.553 +01:00 [DBG] Start key discovery request
2019-06-29 14:10:43.610 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 14:10:43.636 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:43.645 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:43.651 +01:00 [DBG] CORS request made for path: /connect/userinfo from origin: http://localhost:4200
2019-06-29 14:10:43.657 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:10:43.669 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:10:43.670 +01:00 [DBG] Request path /connect/userinfo matched to endpoint type Userinfo
2019-06-29 14:10:43.672 +01:00 [DBG] Endpoint enabled: Userinfo, successfully created handler: IdentityServer4.Endpoints.UserInfoEndpoint
2019-06-29 14:10:43.673 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.UserInfoEndpoint for /connect/userinfo
2019-06-29 14:10:43.675 +01:00 [DBG] Start userinfo request
2019-06-29 14:10:43.677 +01:00 [DBG] Bearer token found in header
2019-06-29 14:10:43.694 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:43.698 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:10:43.708 +01:00 [DBG] Calling into custom token validator: IdentityServer4.Validation.DefaultCustomTokenValidator
2019-06-29 14:10:43.714 +01:00 [DBG] Token validation success
{"ClientId":null,"ClientName":null,"ValidateLifetime":true,"AccessTokenType":"Jwt","ExpectedScope":"openid","TokenHandle":null,"JwtId":null,"Claims":{"nbf":1561813840,"exp":1561817440,"iss":"http://localhost:5000","aud":"http://localhost:5000/resources","client_id":"AngularClientApp","sub":"757684ef-74a9-40eb-b2e1-cfb480e69209","auth_time":1561813840,"idp":"local","scope":["openid","profile","email"],"amr":"pwd"},"$type":"TokenValidationLog"}
2019-06-29 14:10:43.730 +01:00 [DBG] Creating userinfo response
2019-06-29 14:10:43.730 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 14:10:43.732 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 14:10:43.734 +01:00 [DBG] Requested claim types: sub name family_name given_name middle_name nickname preferred_username profile picture website gender birthdate zoneinfo locale updated_at email email_verified
2019-06-29 14:10:43.736 +01:00 [DBG] Scopes in access token: openid profile email
2019-06-29 14:10:43.757 +01:00 [INF] Profile service returned the following claim types: sub name given_name family_name email email_verified website preferred_username
2019-06-29 14:10:43.758 +01:00 [DBG] End userinfo request
2019-06-29 14:10:43.844 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 14:10:43.887 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 14:10:43.945 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 14:10:43.990 +01:00 [DBG] Rendering check session result
2019-06-29 14:10:44.476 +01:00 [INF] Removing 0 grants
2019-06-29 14:11:14.510 +01:00 [INF] Removing 0 grants
2019-06-29 14:11:31.443 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:11:31.451 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:11:31.452 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:11:31.453 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:11:31.455 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:11:31.457 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:11:31.458 +01:00 [DBG] Start discovery request
2019-06-29 14:11:31.618 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 14:11:31.626 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 14:11:31.629 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 14:11:31.632 +01:00 [DBG] Rendering check session result
2019-06-29 14:11:44.546 +01:00 [INF] Removing 0 grants
2019-06-29 14:11:56.897 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:11:56.917 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:11:56.935 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:11:56.938 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:11:56.939 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:11:56.947 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:11:56.977 +01:00 [DBG] Start discovery request
2019-06-29 14:11:57.527 +01:00 [DBG] Request path /connect/checksession matched to endpoint type Checksession
2019-06-29 14:11:57.536 +01:00 [DBG] Endpoint enabled: Checksession, successfully created handler: IdentityServer4.Endpoints.CheckSessionEndpoint
2019-06-29 14:11:57.601 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.CheckSessionEndpoint for /connect/checksession
2019-06-29 14:11:57.626 +01:00 [DBG] Rendering check session result
2019-06-29 14:12:14.554 +01:00 [INF] Removing 0 grants
2019-06-29 14:12:44.561 +01:00 [INF] Removing 0 grants
2019-06-29 14:13:14.576 +01:00 [INF] Removing 0 grants
2019-06-29 14:13:44.587 +01:00 [INF] Removing 0 grants
2019-06-29 14:14:14.595 +01:00 [INF] Removing 0 grants
2019-06-29 14:14:44.608 +01:00 [INF] Removing 0 grants
2019-06-29 14:15:14.613 +01:00 [INF] Removing 0 grants
2019-06-29 14:15:44.637 +01:00 [INF] Removing 0 grants
2019-06-29 14:16:14.655 +01:00 [INF] Removing 0 grants
2019-06-29 14:16:44.711 +01:00 [INF] Removing 0 grants
2019-06-29 14:17:14.732 +01:00 [INF] Removing 0 grants
2019-06-29 14:17:20.940 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:17:20.940 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:17:20.949 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:17:20.950 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:17:20.953 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:17:20.957 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:17:20.973 +01:00 [DBG] Start discovery request
2019-06-29 14:17:20.995 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 14:17:20.997 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 14:17:20.998 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize
2019-06-29 14:17:21.000 +01:00 [DBG] Start authorize request
2019-06-29 14:17:21.017 +01:00 [DBG] No user present in authorize request
2019-06-29 14:17:21.019 +01:00 [DBG] Start authorize request protocol validation
2019-06-29 14:17:21.020 +01:00 [DBG] client configuration validation for client AngularClientApp succeeded.
2019-06-29 14:17:21.045 +01:00 [ERR] Invalid scope: userrole
2019-06-29 14:17:21.063 +01:00 [ERR] Request validation failed
2019-06-29 14:17:21.065 +01:00 [INF] {"ClientId":"AngularClientApp","ClientName":"Angular SPA Client","RedirectUri":"http://localhost:4200/auth-callback","AllowedRedirectUris":["http://localhost:4200/auth-callback"],"SubjectId":"anonymous","ResponseType":"id_token token","ResponseMode":"fragment","GrantType":"implicit","RequestedScopes":"openid profile email userrole api.read","State":"da55ecacc82e4d988e6e65838c934436","UiLocales":null,"Nonce":null,"AuthenticationContextReferenceClasses":null,"DisplayMode":null,"PromptMode":null,"MaxAge":null,"LoginHint":null,"SessionId":null,"Raw":{"client_id":"AngularClientApp","redirect_uri":"http://localhost:4200/auth-callback","response_type":"id_token token","scope":"openid profile email userrole api.read","state":"da55ecacc82e4d988e6e65838c934436","nonce":"883c14670af74bb48b1862cc779ce067"},"$type":"AuthorizeRequestValidationLog"}
2019-06-29 14:17:44.743 +01:00 [INF] Removing 0 grants
2019-06-29 14:17:54.049 +01:00 [DBG] TaskCanceledException. Exiting.
2019-06-29 14:17:54.058 +01:00 [DBG] Stopping grant removal
2019-06-29 14:18:08.633 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer
2019-06-29 14:18:08.676 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication
2019-06-29 14:18:08.677 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in
2019-06-29 14:18:08.677 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out
2019-06-29 14:18:08.678 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge
2019-06-29 14:18:08.678 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid
2019-06-29 14:18:08.812 +01:00 [DBG] Starting grant removal
2019-06-29 14:18:09.853 +01:00 [DBG] Login Url: /Account/Login
2019-06-29 14:18:09.865 +01:00 [DBG] Login Return Url Parameter: ReturnUrl
2019-06-29 14:18:09.868 +01:00 [DBG] Logout Url: /Account/Logout
2019-06-29 14:18:09.872 +01:00 [DBG] ConsentUrl Url: /consent
2019-06-29 14:18:09.876 +01:00 [DBG] Consent Return Url Parameter: returnUrl
2019-06-29 14:18:09.882 +01:00 [DBG] Error Url: /home/error
2019-06-29 14:18:09.909 +01:00 [DBG] Error Id Parameter: errorId
2019-06-29 14:18:38.954 +01:00 [INF] Removing 0 grants
2019-06-29 14:19:01.822 +01:00 [DBG] CORS request made for path: /.well-known/openid-configuration from origin: http://localhost:4200
2019-06-29 14:19:01.832 +01:00 [DBG] Client list checked and origin: http://localhost:4200 is allowed
2019-06-29 14:19:01.836 +01:00 [DBG] CorsPolicyService allowed origin: http://localhost:4200
2019-06-29 14:19:01.838 +01:00 [DBG] Request path /.well-known/openid-configuration matched to endpoint type Discovery
2019-06-29 14:19:01.876 +01:00 [DBG] Endpoint enabled: Discovery, successfully created handler: IdentityServer4.Endpoints.DiscoveryEndpoint
2019-06-29 14:19:01.877 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.DiscoveryEndpoint for /.well-known/openid-configuration
2019-06-29 14:19:01.897 +01:00 [DBG] Start discovery request
2019-06-29 14:19:02.000 +01:00 [DBG] Request path /connect/authorize matched to endpoint type Authorize
2019-06-29 14:19:02.013 +01:00 [DBG] Endpoint enabled: Authorize, successfully created handler: IdentityServer4.Endpoints.AuthorizeEndpoint
2019-06-29 14:19:02.030 +01:00 [INF] Invoking IdentityServer endpoint: IdentityServer4.Endpoints.AuthorizeEndpoint for /connect/authorize