@Roy-Mustang
839ee6e6-f3d1-4cb7-adec-8fdbb56769d8-image.png
thanks for helping me, can you provide a screenshot in using http/xml example, i have tried but it doesn't work, thanks
How i can made an api who start chrome when recive a post?
I tryed to build an api with nodejs but it doesn't work
code:
try{
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
console.log('New request')
res.send(res);
});
app.listen(port, () => console.log(``))
}catch(e){
console.log(e)
}