From 291e530122d3309c84982edd5294b3b586bbf8eb Mon Sep 17 00:00:00 2001 From: Sai Krishna Date: Mon, 28 Jan 2019 21:53:27 +0530 Subject: [PATCH] Before adding this it shows error It says it requires argument, but there is nothing to give so I tried None only after adding that it seems to work Thank you --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cdc610b..e864ba7 100644 --- a/README.md +++ b/README.md @@ -396,7 +396,7 @@ storage.child("images/example.jpg").download("downloaded.jpg") The get_url method takes the path to the saved database file and returns the storage url. ``` -storage.child("images/example.jpg").get_url() +storage.child("images/example.jpg").get_url(None) # https://firebasestorage.googleapis.com/v0/b/storage-url.appspot.com/o/images%2Fexample.jpg?alt=media ```