에러발생
Got a response: Bad Request
This combination of host and port requires TLS.
const http = require('http')
// http 모듈을 https 모듈로 바꿔줘야합니다.
const https = require('https')
에러발생
Error: self signed certificate
at TLSSocket.onConnectSecure (_tls_wrap.js:1058:34)
at TLSSocket.emit (events.js:198:13)
at TLSSocket.EventEmitter.emit (domain.js:448:20)
at TLSSocket._finishInit (_tls_wrap.js:636:8)
해결방법
function https_request(ip: string) {
const options = {
hostname: 'localhost',
port: 8080,
method: 'GET',
rejectUnauthorized: false,
requestCert: true,
};
'알뜰살뜰 정보 > Node' 카테고리의 다른 글
byte 관련 (0) | 2021.02.23 |
---|---|
(Node) npm serialport install 안될 때 (0) | 2021.02.04 |
yarn ERROR: There are no scenarios; must have at least one 에러 시 (0) | 2020.02.25 |
[Node] 프로세스 관리 모듈 pm2 설치 및 pm2 실행 (0) | 2019.10.28 |