2018. 9. 20. 10:02 Back-End/Node
Node HTTP 통신
let checkCoupon_url = await {
url: url,
method: "GET",
headers: this.headers
};
request(checkCoupon_url, function(error, response, body) {
if (!error && response.statusCode == 200) {
parseString(body, function(err, result) {
});
}
});
'Back-End > Node' 카테고리의 다른 글
Node 프로그래밍 시 유의사항 ver.1 기본 (0) | 2018.09.20 |
---|---|
Node xml to json (0) | 2018.09.20 |
Node 소켓 통신 (0) | 2018.09.17 |
Node에서의 암호화 (0) | 2018.09.17 |
Node 연속적인 row 만들기 (0) | 2018.09.17 |