我已经将图像存储到Firebase Storage中,需要使用Python代码将其取出。我可以使用任何URL检索图像吗?还是有什么办法找回它?
以下是我将其存储在Firebase Storage中的图像:
答案 0 :(得分:0)
这就是我用的。希望对您有所帮助。
import firebase_admin
from firebase_admin import credentials
from firebase_admin import storage
# Fetch the service account key JSON file contents
cred = credentials.Certificate("credentials.json")
# Initialize the app with a service account, granting admin privileges
app = firebase_admin.initialize_app(cred, {
'storageBucket': '<BUCKET_NAME>.appspot.com',
}, name='storage')
bucket = storage.bucket(app=app)
blob = bucket.blob("<your_blob_path>")
print(blob.generate_signed_url(datetime.timedelta(seconds=300), method='GET'))
它会生成一个公共URL (持续300秒),供您下载文件。
例如,在我的情况下,我使用该URL显示带有<img>
标签的django网站中存储的图片。
Here是提供更多有用功能的文档。