Added some logging for oauth errors

This commit is contained in:
Ziver Koc 2020-11-22 22:22:59 +01:00
parent 6f7510ce42
commit 923236ab34
2 changed files with 4 additions and 24 deletions

View file

@ -212,6 +212,8 @@ public class OAuth2AuthorizationPage implements HttpPage {
* @param description
*/
private static void errorRedirect(HttpPrintStream out, HttpURL url, String error, String state, String description) {
logger.warning("OAuth2 Authorization Error(" + error + "): " + description);
out.setHeader(HttpHeader.HEADER_CONTENT_TYPE, "application/x-www-form-urlencoded");
url.setParameter("error", error);
if (description != null) url.setParameter("error_description", description);

View file

@ -1,27 +1,3 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2020 Ziver Koc
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/*
* The MIT License (MIT)
*
@ -202,6 +178,8 @@ public class OAuth2TokenPage extends HttpJsonPage {
* @return A DataNode containing the error response
*/
private static DataNode errorResponse(HttpPrintStream out, String error, String state, String description) {
logger.warning("OAuth2 Token Error(" + error + "): " + description);
out.setResponseStatusCode(400);
DataNode jsonErr = new DataNode(DataNode.DataType.Map);