这是什么意思download_url = task.getResult()。getStorage()。getDownloadUrl()。toString()

时间:2020-02-08 17:53:55

标签: android firebase firebase-storage

pivot_wider

1 个答案:

答案 0 :(得分:1)

该行代码有错误。它错误地使用了getDownloadUrl()。这是一个非常常见的错误-您不能仅对结果调用toString()来获取URL。

getDownloadUrl()返回一个Task对象,您可以使用该对象异步获取下载URL。

此处显示了正确的用法:How to get URL from Firebase Storage getDownloadURL

我还建议了reading the documentation