2017-03-02 12 views

답변

3

알고 보니 그것의 IIS6의 용도는 (지금) NodeJS의 디바이스가 ciphers

The connection to this site uses an obsolete protocol (TLS 1.0), andobsolete key exchange (RSA), and an obsolete cipher (3DES_EDE_CBC with HMAC-SHA1). 

를 해결하려면 기본/바이 패스이로 표시하는 안전하지 않은 것으로 간주 SSL 프로토콜을 폐기

NodeJS에서 옵션을 요청하려면 ciphers: 'DES-CBC3-SHA'을 추가하십시오.
https://github.com/nodejs/node/issues/10900#issuecomment-273834289
https://github.com/nodejs/node/issues/9845#issuecomment-7

+0

이 :

Axios의에서

,

agentOptions: { ciphers: 'DES-CBC3-SHA' } 

이 더보고, 옵션을 요청하기 위해 아래의 추가 요청에 옵션을 요청하기 위해 아래

httpsAgent: new https.Agent({ ciphers: 'DES-CBC3-SHA' }) 

를 추가 내 하루 구원해 주셔서 감사합니다. – nilesh