getDownloadUrl on an Array of videos

@robmich Yeah that part worked, the fullUploadData and videoArray are valid, and contain all the expected info. But still no luck on the urlVideoArray. I tried catching the error as you suggested, but saw nothing new, just the same “request timed-out after 14 seconds” message as the above photo.

Put it in as you suggested:

 // GET DOWNLOAD URLS OF VIDEOS //

    let urlVideoArray = [];
    
    for (const fileName of videoArray) {
      let video = await mediaManager.getDownloadUrl(fileName).catch(err => 
      console.log('Error', err));
      
      urlVideoArray.push(video)
    
  }
  console.log("urlVideoArray", urlVideoArray)

 }