This could be a relatively simple answer, and I may be just severely overlooking it.
Im using an API that packages some of our data and sends it back to me in a blob. It provides a url such as, blob:http://localhost:3001/somenumber.
Im assuming this url is where my file is? When i manually hit that url in my browser, it downloads the file I need(just a basic object of data). However I can't seem to actually get this file to output the data so I can handle it in my client code/javascript. I goofed around with the FileReader system but with no success.
Any help would be great. Basically, I want to take this blob url the DB service provides me, and read its contents so I can output the data to the view.
Thanks!