We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have used this request for a http proxy to access https server
axios.get( 'http://localhost:9200', { httpsAgent: new HttpsProxyAgent({ keepAlive: true, keepAliveMsecs: 1000, maxSockets: 256, maxFreeSockets: 256, proxy: 'http://localhost:8080' }) } ) .then( res => console.log('https response : ',res.data) ) .catch( e => console.log('test error : ',e) ) .finally( () => console.log('httpbin test completed') );
The text was updated successfully, but these errors were encountered:
Added axios integrations entry to README file (delvedor#121)
787de1e
No branches or pull requests
Axios
I have used this request for a http proxy to access https server
The text was updated successfully, but these errors were encountered: