express js fetch api code example
Example 1: node js fetch
const fetch = require('node-fetch');
fetch('https://httpbin.org/post', {
method: 'POST',
body: 'a=1'
})
.then(res => res.json())
.then(json => {
})
.catch(err => console.log(err));
Example 2: fetch api with express
const url ='https://example.com';
const headers = {
"Content-Type": "application/json",
"client_id": "1001125",
"client_secret": "876JHG76UKFJYGVHf867rFUTFGHCJ8JHV"
}
const data = {
"name": "Wade Wilson",
"occupation": "Murderer",
"age": "30 (forever)"
}
fetch(url, { method: 'POST', headers: headers, body: data})
.then((res) => {
return res.json()
})
.then((json) => {
console.log(json);
});