nodejs 에서 https 접속시 오류 - unable to verify the first certificate 나올때!

1 답변

0 투표
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0

위와 같이 한줄을 추가해주거나

request({method: "GET", 
        "rejectUnauthorized": false, 
        "url": "https://www.nanumtip.com/",
        "headers" : {"Content-Type": "application/json",
        function(err,data,body) {
    }).pipe(
       fs.createWriteStream('index.html'));

rejectUnauthorized 옵션을 사용해 보세요.

구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...