An API I'm using can only send GET request bodies (or their documentation is unclear).
I can see the body fine from nginx (via $request_body logging). But the request.body
object is completely empty in flask every time.
I confirmed it's a GET request in flask in my endpoint. Is there any way to read the request.body
of a GET request?