From 319491126bad3532bce13523fd2996e19b79d32a Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 28 Mar 2025 16:27:58 -0500 Subject: Handle error raised in the case the request is not JSON --- gn_auth/auth/requests.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gn_auth/auth/requests.py') diff --git a/gn_auth/auth/requests.py b/gn_auth/auth/requests.py index 00e9b35..e876641 100644 --- a/gn_auth/auth/requests.py +++ b/gn_auth/auth/requests.py @@ -1,6 +1,10 @@ """Utilities to deal with requests.""" +import werkzeug from flask import request def request_json() -> dict: """Retrieve the JSON sent in a request.""" - return request.json or dict(request.form) or {} + try: + return request.json + except werkzeug.exceptions.UnsupportedMediaType: + return dict(request.form) or {} -- cgit v1.2.3