Skip to content
New issue

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

download attachents with content functions #413

Open
hi-kuldeep opened this issue May 3, 2021 · 1 comment
Open

download attachents with content functions #413

hi-kuldeep opened this issue May 3, 2021 · 1 comment

Comments

@hi-kuldeep
Copy link

hi-kuldeep commented May 3, 2021

image
image
image

When i use

<a href="privateUrl" download> <img="privateUrl" /> </a>

image

How i can download attachments (pdf / image / docs)?? please help

@ghost
Copy link

ghost commented Oct 5, 2021

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);
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant