Khin Eaindray Htun
Khin Eaindray Htun
Hello. Can I be assigned to this issue?
[](https://user-images.githubusercontent.com/91376371/162609758-4bb7f686-010c-48d3-ae34-7c626945e63b.png)[](https://user-images.githubusercontent.com/91376371/162609777-c476e244-bd43-4677-8dbe-bdf8b6b30213.png)The current get_url method takes the bearer token as a token URL parameter which in fact is a different token, named access token or download token. I have changed the...
For now, you can use it like this. First, retrieve the access token of the file in firebase storage and pass it into the get_url method. You will need requests...
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ have you downloaded Microsoft C++ Build Tools?
storage.child(folder_name).list_files()
Please add service account json file as shown in picture. Then only the method will work, ``` files = storage.child("pictures").list_files() for f in files: print(f) ```  p.s. After I...
If you want files only from a particular folder, you can use this, where the prefix is your folder name followed by a /. ``` files = storage.bucket.list_blobs(prefix="folder_name/") for f...