I can't figure out how to access URL query parameters from a POST request in a Python Azure Function. I am locally testing the function on VSCode.
I've tried:
req.params.get('paramName') - it always is none
url = req.url
query_parameters = urllib.parse.parse_qs(url.query)
param = query_parameters.get('paramName', [None])[0]
- I get the error: url has no query attribute
I also tried os.environ as I saw somewhere that params are automatically set as environment variables for azure functions

