我面临错误:找不到符号方法getDownloadUrl()

时间:2019-10-11 08:35:40

标签: java android firebase google-cloud-firestore firebase-storage

请帮助我解决问题。这是一行:

- service postgresql initdb
- service postgresql start

代码如下:

StorageReference filepath = mStorageReference.child(“ profile_image”)。child(uid +“。jpg”);     最终的StorageReference thumb_file_path = mStorageReference.child(“ profile_image”)。child(“ thumbs”)。child(uid +“。jpg”);

String thumb_download_url=thumb_task.getResult().getDownloadUrl().toString();

1 个答案:

答案 0 :(得分:1)

您在Android Studio中收到以下错误:

  

找不到符号方法getDownloadUrl()

因为当您在getResult()对象上调用thumb_task方法时,返回的对象类型为UploadTask.TaskSnapshot,并且您可以看到在该对象中没有getDownloadUrl()方法类,因此出现错误。要以正确的方式获取下载网址,请从以下帖子中查看我的答案: