我试图上传一个.sav
文件到firebase存储。但每次我尝试上传我得到这个错误:ValueError: Bucket names must start and end with a number or letter.
我在网上找到的教程/问题都没有解决这个问题。
我的做法是
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = 'credentials.json'
storer = storage.Client()
bucket = storer.get_bucket('gs://project_name.appspot.com/') #I found this on the top of my storage account.
有什么想法吗
2条答案
按热度按时间k97glaaz1#
get_bucket采用不带“gs://”和尾部斜杠的bucket名称(这不是一个数字或字母,正如错误消息所提醒的那样)。
js5cn81o2#
存储桶中的gs不应该在那里,它应该是这样的-