无法调用函数cloud_functions

时间:2019-08-02 03:28:33

标签: flutter

我不断得到:

  

颤振:捕获了通用异常

     

颤振:异常:无法调用函数helloWorld。

我一直在使用cloud_functions 0.4.1

CloudFunctions cf = CloudFunctions(region: 'us-central1');
  try {
    HttpsCallable callable = cf.getHttpsCallable(
      functionName: 'helloWorld',
    );

    dynamic resp = await callable.call();

    print(resp);
  } on CloudFunctionsException catch (e) {
    print('caught firebase functions exception');
    print(e.code);
    print(e.message);
    print(e.details);
  } catch (e) {
    print('caught generic exception');
    print(e);
  }

1 个答案:

答案 0 :(得分:0)

NVM!我弄清楚了当我在firebase上部署云功能时,我正在为https请求而不是呼叫部署一个功能。对于以后的任何其他人,在部署方法时都可以使用functions.https.onCall。