开发者问题收集
我想使用 Firebase Hosting 制作一个 Web 应用。使用 Cloud 文本转语音 API 制作音频文件将该音频文件上传到 Cloud Storage将该音频文件从 Cloud Storage 下载到 Web 浏览器我通过了第 1 步和第 2 步,但在第 3 步遇到了麻烦。我按照这个教程操作。https://firebase.google.com/docs/storage/web/d
我一直在尝试用 Python 编写和部署云函数。(由于文档混乱且更改速度相对较快,我放弃了 node.js)它旨在将消息发布到 Pub/Sub 主题,当文件上传到 Google Cloud Bucket 完成(“完成”)时触发。我用来部署该函数的代码是gcloud functions deploy hello_gcs_generic --runtime python37 --trigger-res
我正在尝试为 Firebase 存储模拟器播种。我已将 json 文件添加到我的项目中,并尝试在播种阶段将此文件上传到存储模拟器:await firebaseAdmin.storage().bucket().upload(path.join('./data/cars.json'), {destination: `vehicles/cars.json`,});不幸的是,这似乎不起作用,我遇到了以下错
我有一个 firebase 函数,它将文件写入 firebase 存储:var tempJSONObject = {testing: "why are we testing",anothertest: "constanttesting"}try {const fileName = `storedjokes/81.json`const file = bucket.file(fileName);con