aiohttp: how-to retrieve the data (body) in aiohttp server from requests.get
It depends on the format you want the data to be.
To get a string:
request.text()
To get bytes:
request.read()
To get a JSON dict (Attention, throws a json.decoder.JSONDecodeError if the data is malformatted!):
request.json()
ahh the data
part is accessed like that
await request.json()
You can find this in official aiohttp docs