-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoauth2-error-codes.json
2950 lines (2950 loc) · 132 KB
/
oauth2-error-codes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"release": "2025.01.1",
"build": "2025.01.1-begin-227-g397cfa3ac8a8",
"errors": [
{
"title": "Access denied",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "access_denied",
"errorCode": "access_denied",
"errorDescription": "The resource owner or authorization server denied the request."
},
{
"title": "OpenID scope required in access token",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "openid_scope_required_access_token",
"errorCode": "access_denied",
"errorDescription": "Requests for ID tokens or access tokens with OpenID scopes require the 'openid' scope."
},
{
"title": "Feature not enabled access denied",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "feature_not_enabled_access_denied",
"errorCode": "access_denied",
"errorDescription": "The requested feature is not enabled in this environment."
},
{
"title": "Oie not enabled for interact",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "oie_not_enabled_for_interact",
"errorCode": "access_denied",
"errorDescription": "The requested feature (Interaction Code flow) isn't enabled in this environment. Ensure that you have Okta Identity Engine enabled and the Interaction Code flow enabled for this application and authorization server."
},
{
"title": "Enroll authenticator limit reached",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "enroll_authenticator_limit_reached",
"errorCode": "access_denied",
"errorDescription": "Authenticator enrollment has reached it's limit. Please contact support for assistance."
},
{
"title": "Enroll authenticator not allowed",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "enroll_authenticator_not_allowed",
"errorCode": "access_denied",
"errorDescription": "Authenticator enrollment is not allowed at this time. Please contact support for assistance."
},
{
"title": "Lite user grant type not allowed",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "lite_user_grant_type_not_allowed",
"errorCode": "access_denied",
"errorDescription": "User with lite classification status is not allowed to use the provided 'grant_type'"
},
{
"title": "User not assigned",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "user_not_assigned",
"errorCode": "access_denied",
"errorDescription": "User is not assigned to the client application."
},
{
"title": "No scope allowed by policy",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "no_scope_allowed",
"errorCode": "access_denied",
"errorDescription": "Policy evaluation succeeded, but all the requested scopes were rejected."
},
{
"title": "No matching policy",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "no_matching_policy",
"errorCode": "access_denied",
"errorDescription": "Policy evaluation failed for this request, please check the policy configurations."
},
{
"title": "Scope denied",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "scope_denied",
"errorCode": "access_denied",
"errorDescription": "Some of the requested scopes were denied by the policy. Denied scopes: [en]."
},
{
"title": "Refresh scopes denied",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "refresh_scopes_denied",
"errorCode": "access_denied",
"errorDescription": "Some of the scopes requested for the refresh request were not granted in the original authorize request. Denied scopes: en."
},
{
"title": "Unsupported MFA attestation",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "unsupported_mfa_attestation",
"errorCode": "access_denied",
"errorDescription": "'acr_values' not supported."
},
{
"title": "MFA prompt required but not configured",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_prompt_required_but_not_configured",
"errorCode": "access_denied",
"errorDescription": "The authorize request required an MFA prompt but the org has no factors configured."
},
{
"title": "MFA attestation policy denied",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_attestation_policy_denied",
"errorCode": "access_denied",
"errorDescription": "The MFA attestation request was denied by policy."
},
{
"title": "MFA attestation cannot enroll",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_attestation_cannot_enroll",
"errorCode": "access_denied",
"errorDescription": "The MFA attestation request requires user enrollment but the app does not support inline enrollment."
},
{
"title": "MFA attestation requires signed request object",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_attestation_requires_signed_request_object",
"errorCode": "access_denied",
"errorDescription": "MFA attestation requests must be made using a signed request JWT."
},
{
"title": "MFA attestation cannot use custom as",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_attestation_cannot_use_custom_as",
"errorCode": "access_denied",
"errorDescription": "MFA attestation requests cannot use a custom authorization server."
},
{
"title": "MFA attestation login hint invalid",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mfa_attestation_login_hint_invalid",
"errorCode": "access_denied",
"errorDescription": "'login_hint' did not match a user assigned to the client app."
},
{
"title": "Access denied by aerial",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "access_denied_by_aerial",
"errorCode": "access_denied",
"errorDescription": "The Aerial service denied the request."
},
{
"title": "Associated server not exists",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "associated_server_not_exists",
"errorCode": "access_denied",
"errorDescription": "The associated server doesn't exist."
},
{
"title": "Associated server not trusted",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "associated_server_not_trusted",
"errorCode": "access_denied",
"errorDescription": "The 'subject_token' issuer isn't a trusted authorization server."
},
{
"title": "Unsupported token exchange flow",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "unsupported_token_exchange_flow",
"errorCode": "access_denied",
"errorDescription": "The Token Exchange flow from en app to {1} app isn't supported."
},
{
"title": "Admin consent insufficient permission",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "admin_consent_insufficient_permission",
"errorCode": "access_denied",
"errorDescription": "The user does not have sufficient permission to provide Administrator Consent."
},
{
"title": "Invalid userinfo response",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "invalid_userinfo_response",
"errorCode": "access_denied",
"errorDescription": "The UserInfo response is invalid."
},
{
"title": "Social transaction expired",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "social_transaction_expired",
"errorCode": "access_denied",
"errorDescription": "Social transaction expired."
},
{
"title": "Failed username transform",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "failed_username_transform",
"errorCode": "access_denied",
"errorDescription": "Failed to generate username."
},
{
"title": "Failed username transform invalid expression",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "failed_username_transform_invalid_expression",
"errorCode": "access_denied",
"errorDescription": "The username transform 'en' is invalid."
},
{
"title": "Failed username transform missed field",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "failed_username_transform_missed_field",
"errorCode": "access_denied",
"errorDescription": "The following required property is missing: 'en'."
},
{
"title": "Failed username transform whitespaces found",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "failed_username_transform_whitespaces_found",
"errorCode": "access_denied",
"errorDescription": "Unable to create a user. Username contains invalid whitespace characters: 'en'."
},
{
"title": "User match error",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "user_match_error",
"errorCode": "access_denied",
"errorDescription": "Could not match social profile to an Okta user."
},
{
"title": "User link error",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "user_link_error",
"errorCode": "access_denied",
"errorDescription": "Error in linking or finding a linked user."
},
{
"title": "Invalid user status error",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "invalid_user_status_error",
"errorCode": "access_denied",
"errorDescription": "User status is invalid."
},
{
"title": "Login failed",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "login_failed",
"errorCode": "access_denied",
"errorDescription": "Login failed."
},
{
"title": "JIT disabled",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "jit_disabled",
"errorCode": "access_denied",
"errorDescription": "User creation was disabled."
},
{
"title": "JIT denied",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "jit_denied",
"errorCode": "access_denied",
"errorDescription": "User creation was denied by the callout service."
},
{
"title": "Link disabled",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "link_disabled",
"errorCode": "access_denied",
"errorDescription": "User linking was disabled."
},
{
"title": "Link failure",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "link_failure",
"errorCode": "access_denied",
"errorDescription": "User linking failed."
},
{
"title": "Link denied group",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "link_denied_group",
"errorCode": "access_denied",
"errorDescription": "User linking was denied because the user is not in any of the specified groups."
},
{
"title": "Link denied user",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "link_denied_user",
"errorCode": "access_denied",
"errorDescription": "User linking was denied because the user is not allowed by the account linking filters."
},
{
"title": "Link denied callout",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "link_denied_callout",
"errorCode": "access_denied",
"errorDescription": "User linking was denied by the callout service."
},
{
"title": "Mismatched user in cache and session",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "mismatched_user_in_cache_and_session",
"errorCode": "access_denied",
"errorDescription": "Invalid session."
},
{
"title": "User canceled request",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "user_canceled_request",
"errorCode": "access_denied",
"errorDescription": "User canceled the social login request."
},
{
"title": "Invalid username",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "invalid_username",
"errorCode": "access_denied",
"errorDescription": "Transformed username 'en' is invalid."
},
{
"title": "Password expired",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "password_expired",
"errorCode": "access_denied",
"errorDescription": "The user's password is expired."
},
{
"title": "SecURIty method setup not allowed",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "security_method_setup_not_allowed",
"errorCode": "access_denied",
"errorDescription": "Security method can't be set up at this time."
},
{
"title": "Ciba feature not supported",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "ciba_feature_not_supported",
"errorCode": "access_denied",
"errorDescription": "The Client-Initiated Backchannel Authentication flow currently only supports web applications."
},
{
"title": "Ciba MFA challenge initiation failure",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "ciba_mfa_challenge_initiation_failure",
"errorCode": "access_denied",
"errorDescription": "Failed to initiate the MFA challenge for the Client-Initiated Backchannel Authentication flow."
},
{
"title": "Online access authentication required",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "online_access_authentication_required",
"errorCode": "access_denied",
"errorDescription": "The authorization server requires the user to re-authenticate."
},
{
"title": "Direct auth policy denied",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_policy_denied",
"errorCode": "access_denied",
"errorDescription": "User couldn't be signed-in through direct authentication because authentication policy wasn't satisfied."
},
{
"title": "Direct auth not challenged for required factor type",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_not_challenged_for_required_factor_type",
"errorCode": "access_denied",
"errorDescription": "Unable to prompt for the requested authenticators. Review the Authentication Policy’s requirements or request another authenticator and try again."
},
{
"title": "Direct auth factor enrollment required",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_factor_enrollment_required",
"errorCode": "access_denied",
"errorDescription": "The required authenticator cannot be used. Check if it is required by policy and the user is enrolled in the authenticator and try again."
},
{
"title": "Direct auth expired token",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_expired_token",
"errorCode": "access_denied",
"errorDescription": "'en' has expired. Use a new '{1}' and try again."
},
{
"title": "Direct auth grant types supported not prompted",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_grant_types_supported_not_prompted",
"errorCode": "access_denied",
"errorDescription": "The 'grant_types_supported' 'en' are not sufficient to satisfy the authentication policy. Configure additional grant types for the client or revise the authentication policy to allow the user to sign-in."
},
{
"title": "Direct auth prompted grant type disabled for client",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_prompted_grant_type_disabled_for_client",
"errorCode": "access_denied",
"errorDescription": "The grant types required to satisfy sign on policy are disabled for the client."
},
{
"title": "Direct auth recovery authenticator disabled",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_recovery_authenticator_disabled",
"errorCode": "access_denied",
"errorDescription": "Authenticators required by recovery policy are not enabled authenticators."
},
{
"title": "Direct auth recovery not enabled for user",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_recovery_not_enabled_for_user",
"errorCode": "access_denied",
"errorDescription": "Password recovery is not enabled for the user."
},
{
"title": "Direct auth recovery no empty auth chain",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "direct_auth_recovery_empty_auth_chain",
"errorCode": "access_denied",
"errorDescription": "Recovery policy does not specify any authenticators that can be used for recovery."
},
{
"title": "Authorization pending",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "authorization_pending",
"errorCode": "authorization_pending",
"errorDescription": "The device authorization is pending. Please try again later."
},
{
"title": "Ciba authorization pending",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "ciba_authorization_pending",
"errorCode": "authorization_pending",
"errorDescription": "The authorization request is still pending as the user hasn't yet been authenticated."
},
{
"title": "Direct auth authorization pending",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "direct_auth_authorization_pending",
"errorCode": "authorization_pending",
"errorDescription": "No user response received on the out-of-band authenticator yet. Continue polling to wait for a response."
},
{
"title": "Client credentials self scope requested",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "client_credentials_self_scope_requested",
"errorCode": "client_credentials_self_scope_requested",
"errorDescription": "The 'client_credentials' grant type may not request .self scopes."
},
{
"title": "Consent required",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "consent_required",
"errorCode": "consent_required",
"errorDescription": "The following scopes require user consent: [en]."
},
{
"title": "Consent required client credentials",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "consent_required_client_credentials",
"errorCode": "consent_required",
"errorDescription": "The following scopes require user consent and cannot be granted for the client credentials grant type: [en]."
},
{
"title": "Consent required ropf",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "consent_required_ropf",
"errorCode": "consent_required",
"errorDescription": "The following scopes require user consent: [en]. To access protected scopes using the resource owner password grant type, please uncheck 'Require consent' in the app settings or set the 'consent_method' to 'TRUSTED' through the apps API."
},
{
"title": "Consent required token exchange",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "consent_required_token_exchange",
"errorCode": "consent_required",
"errorDescription": "The following scopes require user consent: [en]. To access protected scopes using the token_exchange password grant type, please uncheck 'Require consent' in the app settings or set the apps 'consent_method' to 'TRUSTED'."
},
{
"title": "No org scopes granted",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "no_org_scopes_granted",
"errorCode": "consent_required",
"errorDescription": "You are not allowed any of the requested scopes."
},
{
"title": "Expired token",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "expired_token",
"errorCode": "expired_token",
"errorDescription": "The device code has expired."
},
{
"title": "Ciba expired auth req ID",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "ciba_expired_auth_req_id",
"errorCode": "expired_token",
"errorDescription": "The 'auth_req_id' is invalid or has expired. Make a new authentication request."
},
{
"title": "ID token does not match session",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "id_token_does_not_match_session",
"errorCode": "id_token_does_not_match_session",
"errorDescription": "The ID token subject does not match the current session's user."
},
{
"title": "IdP initiated flow disabled",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "idp_initated_flow_disabled",
"errorCode": "idp_initated_flow_disabled",
"errorDescription": "IdP-initiated login is disabled for this client."
},
{
"title": "Insufficient scope",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "insufficient_scope",
"errorCode": "insufficient_scope",
"errorDescription": "Insufficient scope"
},
{
"title": "Access token insufficient scopes",
"statusCode": 403,
"statusReasonPhrase": "Forbidden",
"internalErrorCode": "access_token_insufficient_scopes",
"errorCode": "insufficient_scope",
"errorDescription": "The access token provided does not contain the required scopes."
},
{
"title": "Insufficient user authentication",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "insufficient_user_authentication",
"errorCode": "insufficient_user_authentication",
"errorDescription": "The user authentication context is insufficient to perform the action."
},
{
"title": "Interaction required",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "interaction_required",
"errorCode": "interaction_required",
"errorDescription": "Your client is configured to use the interaction code flow and user interaction is required to complete the request."
},
{
"title": "Invalid authorization details",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_authorization_details",
"errorCode": "invalid_authorization_details",
"errorDescription": "Invalid authorization_details."
},
{
"title": "Invalid authorization details with errors",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_authorization_details_with_errors",
"errorCode": "invalid_authorization_details",
"errorDescription": "Invalid authorization_details. Errors: [en]."
},
{
"title": "Invalid authorization details invalid type",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_authorization_details_invalid_resource_type",
"errorCode": "invalid_authorization_details",
"errorDescription": "The type value en in authorization_details is not supported."
},
{
"title": "Invalid client",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_client",
"errorCode": "invalid_client",
"errorDescription": "Client authentication failed. Either the client or the client credentials are invalid."
},
{
"title": "Missing client credentials",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "missing_client_credentials",
"errorCode": "invalid_client",
"errorDescription": "No client credentials found."
},
{
"title": "Invalid basic auth credentials",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_basic_auth_creds",
"errorCode": "invalid_client",
"errorDescription": "Found Authentication header but was not valid client credentials."
},
{
"title": "Invalid client ID",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_client_id",
"errorCode": "invalid_client",
"errorDescription": "Invalid value for 'client_id' parameter."
},
{
"title": "Invalid token endpoint auth method",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_token_endpoint_auth_method",
"errorCode": "invalid_client",
"errorDescription": "Client authentication failed. Either the client or the client credentials are invalid."
},
{
"title": "Invalid client secret",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_client_secret",
"errorCode": "invalid_client",
"errorDescription": "The client secret supplied for a confidential client is invalid."
},
{
"title": "Unsupported auth method browser request",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "unsupported_auth_method_browser_request",
"errorCode": "invalid_client",
"errorDescription": "Browser requests to the token endpoint must use Proof Key for Code Exchange."
},
{
"title": "Unsupported auth method client creds",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "unsupported_auth_method_client_creds",
"errorCode": "invalid_client",
"errorDescription": "Client Credentials requests to the Org Authorization Server must use the private_key_jwt token_endpoint_auth_method."
},
{
"title": "Unsupported auth method client creds oauth integration",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "unsupported_auth_method_client_creds_oauth_integration",
"errorCode": "invalid_client",
"errorDescription": "OAuth Integration Client Credentials requests to the Org Authorization Server must use either private_key_jwt or client_secret_basic as the token_endpoint_auth_method."
},
{
"title": "Invalid application type client credentials",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "invalid_application_type_client_credentials",
"errorCode": "invalid_client",
"errorDescription": "Only clients with 'application_type' of 'service' may use the client_credentials 'grant_type' with the Org Authorization Server."
},
{
"title": "Client assertion invalid issuer",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_issuer",
"errorCode": "invalid_client",
"errorDescription": "The issuer claim for client_assertion is not a valid client_id."
},
{
"title": "Client assertion invalid subject",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_subject",
"errorCode": "invalid_client",
"errorDescription": "The subject claim for client_assertion is not a valid client_id."
},
{
"title": "Client assertion invalid no secret",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_no_secret",
"errorCode": "invalid_client",
"errorDescription": "The issuer and subject claim for client_assertion is invalid because the client does not have a client secret."
},
{
"title": "Client assertion invalid audience",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_audience",
"errorCode": "invalid_client",
"errorDescription": "The audience claim for client_assertion must be the endpoint invoked for the request."
},
{
"title": "Client assertion expiration required",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_expiration_required",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion must contain the 'exp' claim as seconds since epoch."
},
{
"title": "Client assertion expired token",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_expired_token",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion token is expired."
},
{
"title": "Client assertion expires too far in future",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_expires_too_far_in_future",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion token has an expiration too far into the future."
},
{
"title": "Client assertion issued at in future",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_issued_at_in_future",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion token must be issued before the current time."
},
{
"title": "Client assertion already used",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_already_used",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion token has already been used."
},
{
"title": "Client assertion invalid signature",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_signature",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion signature is invalid."
},
{
"title": "Client assertion invalid JWT",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_jwt",
"errorCode": "invalid_client",
"errorDescription": "The parsing of the client_assertion failed."
},
{
"title": "Client assertion invalid kid",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_kid",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion JWT kid is invalid."
},
{
"title": "Client assertion invalid jwks",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_jwks",
"errorCode": "invalid_client",
"errorDescription": "The client JWKSet is invalid."
},
{
"title": "Client assertion invalid signature algorithm",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_signature_algorithm",
"errorCode": "invalid_client",
"errorDescription": "The client_assertion JWT signature algorithm is invalid."
},
{
"title": "Client assertion invalid secret length",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_invalid_secret_length",
"errorCode": "invalid_client",
"errorDescription": "The client secret is too short to verify a JWT HMAC."
},
{
"title": "Client assertion jwks not configured",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "client_assertion_jwks_not_configured",
"errorCode": "invalid_client",
"errorDescription": "The client does not have a JWKSet configured, but the client_assertion requires one."
},
{
"title": "Request object invalid issuer",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "request_object_invalid_issuer",
"errorCode": "invalid_client",
"errorDescription": "The issuer of the request object is invalid."
},
{
"title": "Request object jwks not configured",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "request_object_jwks_not_configured",
"errorCode": "invalid_client",
"errorDescription": "The client does not have a JWKSet configured, but the request object requires one."
},
{
"title": "Ciba request grant type not configured",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "ciba_request_grant_type_not_configured",
"errorCode": "invalid_client",
"errorDescription": "The client doesn't have the 'urn:openid:params:grant-type:ciba' grant type configured."
},
{
"title": "Ciba request signed algo not configured",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "ciba_request_signed_algo_not_configured",
"errorCode": "invalid_client",
"errorDescription": "The client doesn't have a RequestObjectSigningAlgorithm configured for signing authentication requests for the Client-Initiated Backchannel Authentication flow."
},
{
"title": "Jwks URI no key",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "jwks_uri_no_key",
"errorCode": "invalid_client",
"errorDescription": "The client JWKSet from jwks_uri must contain at least one key."
},
{
"title": "Jwks URI ambiguous keys",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "jwks_uri_ambiguous_keys",
"errorCode": "invalid_client",
"errorDescription": "All keys in the client JWKSet from jwks_uri must have a unique kid."
},
{
"title": "Jwks URI algorithm required",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "jwks_uri_algorithm_required",
"errorCode": "invalid_client",
"errorDescription": "The client JWKSet from jwks_uri must contain at least one key with an algorithm matching the request_object_signature_algorithm."
},
{
"title": "Jwks URI error",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "jwks_uri_error",
"errorCode": "invalid_client",
"errorDescription": "Error retrieving the client JWKSet from jwks_uri."
},
{
"title": "Jwks URI jku mismatch error",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "jwks_uri_jku_mismatch_error",
"errorCode": "invalid_client",
"errorDescription": "The 'jku' in JWT and 'jwks_uri' doesn't match."
},
{
"title": "Authorize request URI mismatched client",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "authorize_request_uri_mismatched_client",
"errorCode": "invalid_client",
"errorDescription": "The 'client_id' parameter does not match the expected value for the provided request_uri."
},
{
"title": "Direct auth invalid client ID",
"statusCode": 401,
"statusReasonPhrase": "Unauthorized",
"internalErrorCode": "direct_auth_invalid_client_id",
"errorCode": "invalid_client",
"errorDescription": "The client_id 'en' does not match the client_id in the original request '{1}'. Use the original client id and try again."
},
{
"title": "Invalid client metadata",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_client_metadata",
"errorCode": "invalid_client_metadata",
"errorDescription": "Invalid request"
},
{
"title": "Invalid dpop proof",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof",
"errorCode": "invalid_dpop_proof",
"errorDescription": "The DPoP proof JWT is invalid."
},
{
"title": "Invalid dpop proof missing header",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_missing_header",
"errorCode": "invalid_dpop_proof",
"errorDescription": "The DPoP proof JWT header is missing."
},
{
"title": "Invalid dpop proof multiple headers not allowed",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_multiple_headers_not_allowed",
"errorCode": "invalid_dpop_proof",
"errorDescription": "Multiple DPoP proof JWT headers are not allowed."
},
{
"title": "Invalid dpop proof invalid type",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_invalid_type",
"errorCode": "invalid_dpop_proof",
"errorDescription": "'typ' must be 'dpop+jwt' in the DPoP proof JWT."
},
{
"title": "Invalid dpop proof invalid signature algorithm",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_invalid_signature_algorithm",
"errorCode": "invalid_dpop_proof",
"errorDescription": "The DPoP proof JWT signature algorithm is invalid."
},
{
"title": "Invalid dpop proof invalid JWT",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_invalid_jwt",
"errorCode": "invalid_dpop_proof",
"errorDescription": "The DPoP proof JWT cannot be parsed."
},
{
"title": "Invalid dpop proof invalid signature",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_invalid_signature",
"errorCode": "invalid_dpop_proof",
"errorDescription": "The DPoP proof JWT signature is invalid."
},
{
"title": "Invalid dpop proof invalid htm",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",
"internalErrorCode": "invalid_dpop_proof_invalid_htm",
"errorCode": "invalid_dpop_proof",
"errorDescription": "'htm' claim in the DPoP proof JWT is invalid."
},
{
"title": "Invalid dpop proof invalid htu",
"statusCode": 400,
"statusReasonPhrase": "Bad Request",