如何通過雲端功能檢索Firebase中存儲圖像的下載鏈接?通過雲端功能檢索Firebase存儲圖像鏈接
我已經嘗試了各種變化,包括下一個:
exports.getImgs = functions.https.onRequest((req, res) => {
var storage = require('@google-cloud/storage')();
var storageRef = storage.ref;
console.log(storageRef);
storageRef.child('users/user1/avatar.jpg').getDownloadURL().then(function(url) {
});
});
可能出現的[使用Cloud Functions for Firebase上傳的文件獲取下載URL](https://stackoverflow.com/questions/42956250/get-download-url-from-file-uploaded-with-cloud-functions- for-firebase) –