Skip to content

files

Download

Automatic download

  • To trigger automatic download, response header should includes:

Content-Type: $mimeType Content-Disposition: attachment; filename=invoice.pdf

  • Create front-end download link via post request:

With window.URL.createObjectURL() from blob, its possible to create front-end download link via bytes.

github gist

  • platform speciality

ios browser: Can not trigger automatic download. User should touch 'share > ' to manually download file.

Application webview: Download behaviour is usually under control of native layer, thus can not trigger download as freely as in browser.