diff options
author | Frederick Muriuki Muriithi | 2025-03-28 16:27:58 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-28 16:28:43 -0500 |
commit | 319491126bad3532bce13523fd2996e19b79d32a (patch) | |
tree | 813e13cc6084b79a03731d0110a3ad3e7e06ec15 | |
parent | e6ae127e6fe86b738d16d22d70a5db2dadf349a0 (diff) | |
download | gn-auth-319491126bad3532bce13523fd2996e19b79d32a.tar.gz |
Handle error raised in the case the request is not JSON
-rw-r--r-- | gn_auth/auth/requests.py | 6 |
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 {} |