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
When i use
<a href="privateUrl" download> <img="privateUrl" /> </a>
How i can download attachments (pdf / image / docs)?? please help
The text was updated successfully, but these errors were encountered:
Hi @hi-kuldeep . You can try following code to download attachment(s):
const privateUrl = QB.content.privateUrl('your file id'); const [url, token] = privateUrl.split('?token='); fetch(url + '.json', { headers: { 'QB-Token': token } }) .then(res => res.blob()) .then(blob => { const a = document.createElement('a'); const blobUrl = URL.createObjectURL(blob); a.href = URL.createObjectURL(blob); document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(blobUrl); })
Sorry, something went wrong.
No branches or pull requests
When i use
<a href="privateUrl" download> <img="privateUrl" /> </a>
How i can download attachments (pdf / image / docs)?? please help
The text was updated successfully, but these errors were encountered: