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
Is there a way to set/add request header to the call? I would need to add 'Cache-Control': "private, no-cache, no-store" .
function urlToPromise(url) { return new Promise(function(resolve, reject) { JSZipUtils.getBinaryContent(url, function(err, data) { if (err) { reject(err); } else { resolve(data); } }); }); }
The text was updated successfully, but these errors were encountered:
Hi , Did you find a way to do it ?
Sorry, something went wrong.
I also need to set a header to the request. Would be really appreciated to get some info on this.
did anyone found solution?
No branches or pull requests
Is there a way to set/add request header to the call?
I would need to add 'Cache-Control': "private, no-cache, no-store" .
function urlToPromise(url) { return new Promise(function(resolve, reject) { JSZipUtils.getBinaryContent(url, function(err, data) { if (err) { reject(err); } else { resolve(data); } }); }); }
The text was updated successfully, but these errors were encountered: