我想通过监听由functions.
database.ref().onWrite()(而不是functions.storage.object().onChange())触发的事件来使用firebase云函数执行文件操作.
我注意到大部分样本使用云函数functions.storage.object().onChange()来触发云函数进行文件操作.有没有办法从functions.database.ref()中获取storageRef并从那里执行文件操作?
解决方法
要从数据库触发的云功能中访问Firebase存储,您可以使用Google Cloud SDK.
来自我的一个应用:
const gcs = require('@google-cloud/storage')(); ... exports .emojifyStory = functions.database.ref('/stories/{storyId}') .onWrite(function(event) { const filePath = event.data.val().filePath; const file = gcs.bucket(bucket).file(filePath); // Use the Vision API to detect labels return visionClient.detectLabels(file) .then(data => { ...