I'm trying to support downloading a file from an API in Edge on iOS. The file is downloaded as a blob, and we already have solutions in place for downloading on Safari and Chrome (Using createObjectUrl
and readAsDataUrl
respectively), but neither of these seem to work on Edge on iOS.
I can't find anything online around how to do this, and even FileReader doesn't seem to support it.
I have tried to download using solutions that work consistently in Chrome on iOS and Safari on iOS.
Edit: Edge on iOS uses Safari's rendering engine, so any IE11 or Edge on Desktop focused solutions will not work here.