如何在 firebase-admin 存储中获取或创建参考文件
How Can I get or create reference File in firebase-admin Storage
我正在使用 Firebase-admin,我想知道如何创建或获取文件的引用。
有了这个引用,我将使用引用数据类型将其保存在 Firestore 中。
这是我要尝试的(Typescript 示例):
import * as admin from 'firebase-admin'
admin
.storage()
.bucket()
.file('path/to/myfile.jpg')
.getMetadata()
.then(apiResponse => {
console.log(apiResponse)
})
我正在使用 Firebase-admin,我想知道如何创建或获取文件的引用。
有了这个引用,我将使用引用数据类型将其保存在 Firestore 中。
这是我要尝试的(Typescript 示例):
import * as admin from 'firebase-admin'
admin
.storage()
.bucket()
.file('path/to/myfile.jpg')
.getMetadata()
.then(apiResponse => {
console.log(apiResponse)
})