From a1d17621a22bca8a41271b36daa8afd1894a7cc9 Mon Sep 17 00:00:00 2001 From: masterwali Date: Wed, 31 Jul 2019 20:29:58 -0400 Subject: [PATCH] Update README.md get_url needs a token, pass 'None' to igore --- 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 ```