【发布时间】:2020-02-03 10:54:04
【问题描述】:
最近推出的 Firebase 扩展“图像调整大小”会在图片上传到存储桶后生成缩略图。
扩展完成后如何获取该缩略图图片的下载地址?
final StorageReference storageRef =
FirebaseStorage.instance.ref().child(fileName);
final StorageUploadTask uploadTask = storageRef.putFile(
File(path),
);
final StorageTaskSnapshot downloadUrl = (await uploadTask.onComplete);
final String url = (await downloadUrl.ref.getDownloadURL()); //This will give me the download url of file before resize
// ??How do I the download url of resized image that gets stored in fileName/thumbnails folder
【问题讨论】:
标签: android firebase-storage firebase-extensions