This module works great for HTTP requests and also HTTPS websites with authorized signed certificates. Is there a way to skip verification for websites that are self-signed and not yet verified?Member mzabriskie commented Jul 13, 2016 No work has been done in this lib for addressing your ...
To handle self-signed certificates or skip SSL verification (not recommended for production), you can create an Axios instance with a custom HTTPS agent: import * as https from 'https'; const instance = axios.create({ httpsAgent: new https.Agent({ rejectUnauthorized: false }) }); In this...