I ran into this issue when playing around with an external API. I was sending my body data as a dictionary straight into the request and was getting 400 errors:
data = {
"someParamRange": {
"to": 1000,
"from": 100
},
"anotherParamRange": {
"to": True,
"from": False
}
}
When I added a json.dumps wrap, it works:
data = json.dumps({
"someParamRange": {
"to": 1000,
"from": 100
},
"anotherParamRange": {
"to": True,
"from": False
}
})
I don't entirely understand why this is necessary, as dictionaries and JSON objects are syntactically identical. Can someone help me understand what is going on behind the scenes here?
For completeness, here are my headers:
headers = {'API-KEY': 'blerg', 'Accept-Encoding': 'UTF-8', 'Content-Type': 'application/json', 'Accept': '*/*', 'username': 'user', 'password': 'pwd'}
EDIT:
I didn't mention this earlier but now I feel that it may be relevant. I am using the Python Requests library, and another post seems to suggest that you should never have to encode parameters to a request object: https://stackoverflow.com/a/14804320/1012040
"Regardless of whether GET/POST you never have to encode parameters again, it simply takes a dictionary as an argument and is good to go."
Seems like serialization shouldn't be necessary?
My request object:
response = requests.post(url, data=data, headers=headers)