繁体   English   中英

如何从 Android 调用 Java/Kotlin GCP Cloud Functions

[英]How to call Java/Kotlin GCP Cloud Functions from Android

我在 kotlin 中写了一个 http function。从 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

可调用 Cloud Functions使用的onCall协议仅针对 Node.js/Firebase Functions SDK 实现。Google Cloud Functions 支持的任何其他服务器端库均未实现。

因此,如果您想使用用 Java/Kotlin 编写的可调用 Cloud Functions,您必须自己实现服务器端版本的onCall协议

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM