aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-03-28 16:27:58 -0500
committerFrederick Muriuki Muriithi2025-03-28 16:28:43 -0500
commit319491126bad3532bce13523fd2996e19b79d32a (patch)
tree813e13cc6084b79a03731d0110a3ad3e7e06ec15
parente6ae127e6fe86b738d16d22d70a5db2dadf349a0 (diff)
downloadgn-auth-319491126bad3532bce13523fd2996e19b79d32a.tar.gz
Handle error raised in the case the request is not JSON
-rw-r--r--gn_auth/auth/requests.py6
1 files changed, 5 insertions, 1 deletions
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 {}