Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/firebase/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用firebase云函数上载图像_Firebase_Google Cloud Functions - Fatal编程技术网

使用firebase云函数上载图像

使用firebase云函数上载图像,firebase,google-cloud-functions,Firebase,Google Cloud Functions,如何从调用函数的android应用程序中使用firebase云函数上载图像(从应用程序调用函数),而不是(通过HTTP请求调用函数) 例如: exports.uploadImage= functions.https.onCall((data, context) => { }); 为什么不为Firebase使用云存储和为Android使用Firebase SDK?请参阅,因为我正在注册一个用户,并且我希望通过使用云函数来保存。因此用户将无法操作我的代码。仅供参考,我正在使用fireba

如何从调用函数的android应用程序中使用firebase云函数上载图像(从应用程序调用函数),而不是(通过HTTP请求调用函数)

例如:

exports.uploadImage= functions.https.onCall((data, context) => {


});

为什么不为Firebase使用云存储和为Android使用Firebase SDK?请参阅,因为我正在注册一个用户,并且我希望通过使用云函数来保存。因此用户将无法操作我的代码。仅供参考,我正在使用firebase SDK for android,但它对我来说不安全。可能是