File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ static const ErrorCodeMapping kFirebaseAuthCodes[] = {
115
115
{" ERROR_UNSUPPORTED_FIRST_FACTOR" , kAuthErrorUnsupportedFirstFactor },
116
116
{" ERROR_EMAIL_CHANGE_NEEDS_VERIFICATION" ,
117
117
kAuthErrorEmailChangeNeedsVerification },
118
+ {" ERROR_USER_CANCELLED" , kAuthErrorMissingOrInvalidNonce },
118
119
{nullptr },
119
120
};
120
121
Original file line number Diff line number Diff line change @@ -416,6 +416,11 @@ enum AuthError {
416
416
// / This can happen if the hash of the provided raw nonce did not match the
417
417
// / hashed nonce in the OIDC ID token payload.
418
418
kAuthErrorMissingOrInvalidNonce ,
419
+
420
+ // / Indicates that the user did not authorize the application during Generic
421
+ // / IDP sign-in.
422
+ kAuthErrorUserCancelled ,
423
+
419
424
#endif // INTERNAL_EXEPERIMENTAL
420
425
};
421
426
You can’t perform that action at this time.
0 commit comments