nodejs request post json code example
Example 1: fetch json post
(async () => {
const rawResponse = await fetch('https://httpbin.org/post', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({a: 1, b: 'Textual content'})
});
const content = await rawResponse.json();
console.log(content);
})();
Example 2: node express post request json
var express = require('express');
var app = express();
app.use(express.json());
app.post('/', function(request, response){
let myJson = request.body;
let myValue = request.body.myKey;
response.send(myJson);
});
app.listen(3000);
Example 3: node send post request
const axios = require('axios')
axios
.post('https://whatever.com/todos', {
todo: 'Buy the milk'
})
.then(res => {
console.log(`statusCode: ${res.statusCode}`)
console.log(res)
})
.catch(error => {
console.error(error)
})