Преглед изворни кода

show oauth error callback message when auth fails (#4058)

This change aims to display the oauth error to the user when the autnetication process fails.

Close #4048
bubble
wayglem пре 6 година
committed by kyle
родитељ
комит
1f565b4847
2 измењених фајлова са 16 додато и 2 уклоњено
  1. +8
    -1
      dev-helpers/oauth2-redirect.html
  2. +8
    -1
      dist/oauth2-redirect.html

+ 8
- 1
dev-helpers/oauth2-redirect.html Прегледај датотеку

@@ -45,11 +45,18 @@
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
let oauthErrorMsg
if (qp.error) {
oauthErrorMsg = "["+qp.error+"]: " +
(qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
(qp.error_uri ? "More info: "+qp.error_uri : "");
}

oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "error",
message: "Authorization failed: no accessCode received from the server"
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
});
}
} else {


+ 8
- 1
dist/oauth2-redirect.html Прегледај датотеку

@@ -45,11 +45,18 @@
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
let oauthErrorMsg
if (qp.error) {
oauthErrorMsg = "["+qp.error+"]: " +
(qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
(qp.error_uri ? "More info: "+qp.error_uri : "");
}

oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "error",
message: "Authorization failed: no accessCode received from the server"
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
});
}
} else {


Loading…
Откажи
Сачувај