[Flutter][Cloud Functions] Cloud Functionsでリージョンを'asia-northeast1'にした時のFlutterでの呼び出し方法
2200 ワード
記述コード
サンプルに従って以下を記述していたが、Exceptionが発生した。
final HttpsCallable callable = CloudFunctions.instance.getHttpsCallable(
functionName: 'FUNCTION NAME',
);
dynamic result = await callable.call();
エラー内容
- エラーコード
3840 - エラーメッセージ
データのフォーマットが正しくないため、読み込めませんでした。
解決策
CloudFunctions生成時にregionを指定してあげる
CloudFunctions cloudFunctions = CloudFunctions(region: 'asia-northeast1');
HttpsCallable callable = cloudFunctions.getHttpsCallable(functionName: 'FUNCTION NAME');
HttpsCallableResult result = await callable.call();
Author And Source
この問題について([Flutter][Cloud Functions] Cloud Functionsでリージョンを'asia-northeast1'にした時のFlutterでの呼び出し方法), 我々は、より多くの情報をここで見つけました https://qiita.com/unbam/items/2012cbd41d4ee457d9c9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .