const https = require('https');
const querystring = require('querystring');
const postData = querystring.stringify({
name: '백충덕',
type: 'admin'
});
const opt = {
hostname: 'hostname.com',
port: 443,
path: '/path/to',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': postData.length
}
};
const req = https.request(opt, (res)=>{
let buf = '';
res.on('data', (data)=>{
buf += data;
});
res.on('end', ()=>{
console.log(JSON.parse(buf));
});
});
req.write(postData);
req.end();
'node.js' 카테고리의 다른 글
[node.js] v17 이상에서 TLSv1.0 서버 https 요청시 에러 발생 (0) | 2024.12.11 |
---|---|
[node.js] WriteStream 사용시 fd close (0) | 2021.07.12 |
[node.js] MongoDB find/aggregate 대량 document 가져올 때 MongoNetworkError: cursor killed or timed out 발생시 (0) | 2020.05.27 |
[node.js] load average throttle (0) | 2019.09.26 |
[node.js] 동시에 실행되는 수를 조절하며 비동기 함수 전체 실행 (Promise.all with limited concurrency) (0) | 2019.09.26 |