Member since
07-01-2016
3
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1391 | 07-07-2016 11:20 PM |
07-07-2016
11:20 PM
It ended up being a problem with the way I was posting the JSON. I wasn't specifying in the header that it was a JSON file, so the server assumed it was type "application/x-www-form-urlencoded" rather than "application/json" Sending this as a header (I'm using python requests) fixed it. {'Content-Type': 'application/json'}
... View more