How to POST data from python and GET it in NodeJS?

617 Views Asked by At

I have a NodeJS server and I want to GET data that is coming from python with the POST method.

pythonData.js

const router = require('express').Router()
    router.get("/data",(req,res)=>{
        console.log(res)
    })
    module.exports = router

data.py

import requests
data = {"Car": "BMW","Testing":"API"}

request = requests.post("http://localhost:5000/python/data",data=data)
print(request.status_code)
print(request.text)

but when I run my python file I got an error

404

Error
Cannot POST
/python/data

Also how do I get it in my NodeJS

2

There are 2 best solutions below

1
On

You have implemented a GET method in Node, but you are doing a POST from Python.

Try changing the router.get to router.post in your Express server.

0
On

You express router function is processing GET request. Change this to process POST request.