I have a JavaScript client program (Angular) which is sending a JSON encoded parameter via a GET Http Request. This parameter is not sent as part of the query string, but rather in the message body.
Is it possible for flask to provide support for extracting this type of parameter from a GET request? If so, what API just be used? All the examples I have seen online are the POST requests.