我在 kotlin 中编写了一个 http 函数。从 GCP 测试时它工作正常。相同的几行是:
class WinnerDeclaration : HttpFunction {
override fun service(request: HttpRequest?, response: HttpResponse?) {
//code ...
}
}
参考https://firebase.google.com/docs/functions/callable#call_the_function后,我写了这段代码:
private val cloudFunctions = FirebaseFunctions.getInstance()
val data = hashMapOf("uid" to uid)
cloudFunctions
.getHttpsCallable("WinnerDeclaration")
.call(data)
.addOnSuccessListener {
//code ...
}.addOnFailureListener {
it.printStackTrace()
}
但我总是得到这个例外: com.google.firebase.functions.FirebaseFunctionsException: NOT_FOUND