Python Post Request Body Appears Empty In Node Server When Sent
I am trying to send a post request via Python to my node.js server My python code looks like: payload = { 'tableName': 'events', 'whereParams': { 'end_date': ['bet
Solution 1:
I found out that I was missing app.use bodyParser.json()
from my server code, which seemed to be preventing the server from parsing multipart form data that did not include a file.
Post a Comment for "Python Post Request Body Appears Empty In Node Server When Sent"