I am building a web app that in some cases requires me to display multiple images on the same page. The web app uses firebase cloud storage for storing the images. In order to keep the total number of api calls down I want to get all the urls in a single call. Currently, getDownloadURL does not seem to have the ability to do this. Are there any functions you know of that do? (I know all the file paths in advance)
I tried searching for such functions on the documentation but all the docs I found only showed me how to get one url at a time.