Hi, when I return the image value it returns the URL like this https://firebasestorage.googleapis.com/v0/b/<my-firebase-app-name>.appspot.com/o?name=uploads%2Ftrain%2F1589391958010.jpg&uploadType=resumable&upload_id=<some-id>&upload_protocol=resumable
in the above URL, I have this uploads%2Ftrain%2F1589391958010.jpg now I want to get the image path like this uploads/train/1589391958010.jpg to be able to pass it to storage.child(storage/image/path).download()
Hi, when I return the image value it returns the URL like this
https://firebasestorage.googleapis.com/v0/b/<my-firebase-app-name>.appspot.com/o?name=uploads%2Ftrain%2F1589391958010.jpg&uploadType=resumable&upload_id=<some-id>&upload_protocol=resumable
in the above URL, I have this
uploads%2Ftrain%2F1589391958010.jpg
now I want to get the image path like thisuploads/train/1589391958010.jpg
to be able to pass it tostorage.child(storage/image/path).download()
Does anyone know how to do that?