const ref = this.storage.ref('array.txt'); ref.getDownloadURL().subscribe(data => { fetch(data) .then(function(response) { response.text().then(function(text) { console.log(text); }); }); });