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
Our apps, are behind a proxy network, we're using this library for one of our projects. It would be really nice, if you add support for proxy.
https://aws.amazon.com/es/blogs/developer/using-the-aws-sdk-for-javascript-from-behind-a-proxy/
var AWS = require('aws-sdk'); var proxy = require('proxy-agent'); AWS.config.update({ httpOptions: { agent: proxy('http://user:[email protected]') } }); var s3 = new AWS.S3({region: 'us-west-2'}); s3.getObject({Bucket: 'bucket', Key: 'key'}, function (err, data) { console.log(err, data); });
Would you mind if I make you a PR?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Our apps, are behind a proxy network, we're using this library for one of our projects. It would be really nice, if you add support for proxy.
https://aws.amazon.com/es/blogs/developer/using-the-aws-sdk-for-javascript-from-behind-a-proxy/
Would you mind if I make you a PR?
The text was updated successfully, but these errors were encountered: