1👍
✅
I believe you may need to use dumps
rather than loads
when sending the request:
x = requests.post(url, json.dumps(parsed))
Alternatively if you’re using the python requests
library you can send json as a dict as below:
response = requests.post(url=url, json=parsed)
Source:stackexchange.com