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
Currently there is no way to disable ssl certificate check, so I am using this monkey patch in my code
var src = fs.readFileSync(module_file, 'utf8') .replace( 'this.shred = new this.Shred(options)', 'this.shred = new this.Shred({defaults: {sslStrict:false}})' )
It would be helpful if we can pass this as an option when instantiating the client.
The text was updated successfully, but these errors were encountered:
That looks like one step before submitting a PR ;)
Sorry, something went wrong.
added opts to pass to underlying http client, #229
5b20e78
you can now pass opts to the client when making the calls:
new SwaggerHttp().execute(obj, opts);
These opts will flow to which either client specified as in obj.useJQuery.
Should the options be passed like
var opts = {}; opts.spec = { swagger: '2.0', defaults: { sslStrict:false } }; new SwaggerHttp().execute(obj,opts);
No branches or pull requests
Currently there is no way to disable ssl certificate check, so I am using this monkey patch in my code
It would be helpful if we can pass this as an option when instantiating the client.
The text was updated successfully, but these errors were encountered: