เรียกใช้ฟังก์ชันจากแอป (รุ่นที่ 1)

Cloud Functions for Firebase Client SDK ช่วยให้คุณเรียกใช้ฟังก์ชันได้โดยตรงจาก แอป Firebase หากต้องการเรียกใช้ฟังก์ชันจากแอปด้วยวิธีนี้ ให้เขียนและติดตั้งใช้งาน ฟังก์ชัน HTTP Callable ใน Cloud Functions แล้ว เพิ่มตรรกะของไคลเอ็นต์เพื่อเรียกใช้ฟังก์ชันจากแอป

โปรดทราบว่าฟังก์ชัน HTTP Callable มีลักษณะคล้ายกับฟังก์ชัน HTTP แต่ไม่เหมือนกัน หากต้องการใช้ฟังก์ชัน HTTP Callable คุณต้องใช้ Client SDK สำหรับแพลตฟอร์มของคุณร่วมกับ Backend API (หรือใช้โปรโตคอล) ฟังก์ชัน Callable มีความแตกต่างที่สำคัญจากฟังก์ชัน HTTP ดังนี้

  • สำหรับฟังก์ชัน Callable ระบบจะรวมโทเค็น Firebase Authentication โทเค็น FCM และโทเค็น App Check ไว้ในคำขอโดยอัตโนมัติเมื่อมีโทเค็นดังกล่าว
  • ทริกเกอร์จะยกเลิกการซีเรียลไลซ์เนื้อหาของคำขอและตรวจสอบโทเค็นการตรวจสอบสิทธิ์โดยอัตโนมัติ

Firebase SDK สำหรับ Cloud Functions รุ่นที่ 2 ขึ้นไปทำงานร่วมกับ Firebase Client SDK เวอร์ชันขั้นต่ำต่อไปนี้เพื่อรองรับฟังก์ชัน HTTPS Callable

  • Firebase SDK สำหรับแพลตฟอร์ม Apple เวอร์ชัน 12.12.0
  • Firebase SDK สำหรับ Android เวอร์ชัน 22.1.1
  • Firebase Modular Web SDK เวอร์ชัน 9.7.0

หากต้องการเพิ่มฟังก์ชันการทำงานที่คล้ายกันลงในแอปที่สร้างขึ้นในแพลตฟอร์มที่ไม่รองรับ โปรดดู ข้อกำหนดโปรโตคอลสำหรับ https.onCall ส่วนที่เหลือของคู่มือนี้จะให้วิธีการเขียน ติดตั้งใช้งาน และเรียกใช้ฟังก์ชัน HTTP Callable สำหรับแพลตฟอร์ม Apple, Android, เว็บ, C++ และ Unity

เขียนและติดตั้งใช้งานฟังก์ชัน Callable

ใช้ functions.https.onCall เพื่อสร้างฟังก์ชัน HTTPS Callable เมธอดนี้ใช้พารามิเตอร์ 2 รายการ ได้แก่ data และ context (ไม่บังคับ)

  // Saves a message to the Firebase Realtime Database but sanitizes the
  // text by removing swearwords.
  exports.addMessage = functions.https.onCall((data, context) => {
    // ...
  });
  

ตัวอย่างเช่น สำหรับฟังก์ชัน Callable ที่บันทึกข้อความลงใน Realtime Database, เช่น data อาจมีข้อความ ส่วนพารามิเตอร์ context จะแสดงข้อมูลการตรวจสอบสิทธิ์ของผู้ใช้

// Message text passed from the client.
const text = request.data.text;
// Authentication / user information is automatically added to the request.
const uid = request.auth.uid;
const name = request.auth.token.name || null;
const picture = request.auth.token.picture || null;
const email = request.auth.token.email || null;

ระยะห่างระหว่างตำแหน่งของฟังก์ชัน Callable กับตำแหน่งของไคลเอ็นต์ที่เรียกใช้ฟังก์ชันอาจทำให้เกิดเวลาในการตอบสนองของเครือข่าย หากต้องการเพิ่มประสิทธิภาพ ให้ระบุตำแหน่งของฟังก์ชันเมื่อ เป็นไปได้ และตรวจสอบว่าตำแหน่งของฟังก์ชัน Callable สอดคล้องกับตำแหน่งที่ ตั้งไว้เมื่อคุณเริ่มต้น SDK ในฝั่งไคลเอ็นต์

คุณสามารถแนบการรับรอง App Check เพื่อช่วยปกป้องทรัพยากรแบ็กเอนด์ จากการละเมิด เช่น การฉ้อโกงผ่านการเรียกเก็บเงินหรือฟิชชิง (ไม่บังคับ) ดู เปิดใช้ App Check การบังคับใช้สำหรับ Cloud Functions

ส่งผลลัพธ์กลับ

หากต้องการส่งข้อมูลกลับไปยังไคลเอ็นต์ ให้ส่งข้อมูลที่เข้ารหัส JSON ได้กลับไป ตัวอย่างเช่น หากต้องการส่งผลลัพธ์ของการดำเนินการบวกกลับไป ให้ทำดังนี้

// returning result.
return {
  firstNumber: firstNumber,
  secondNumber: secondNumber,
  operator: "+",
  operationResult: firstNumber + secondNumber,
};

หากต้องการส่งข้อมูลกลับหลังจากดำเนินการแบบไม่พร้อมกัน ให้ส่งคำสัญญา (Promise) กลับไป ระบบจะส่งข้อมูลที่ส่งกลับโดยคำสัญญา (Promise) กลับไปยังไคลเอ็นต์ ตัวอย่างเช่น คุณ อาจส่งข้อความที่ผ่านการล้างข้อมูลแล้วซึ่งฟังก์ชัน Callable เขียนลงใน Realtime Database กลับไป

// Saving the new message to the Realtime Database.
const sanitizedMessage = sanitizer.sanitizeText(text); // Sanitize message.

return getDatabase().ref("/messages").push({
  text: sanitizedMessage,
  author: {uid, name, picture, email},
}).then(() => {
  logger.info("New Message written");
  // Returning the sanitized message to the client.
  return {text: sanitizedMessage};
})

จัดการข้อผิดพลาด

หากต้องการให้ไคลเอ็นต์ได้รับรายละเอียดข้อผิดพลาดที่เป็นประโยชน์ ให้ส่งข้อผิดพลาดจากฟังก์ชัน Callable กลับไปโดยการส่ง (หรือส่งคำสัญญา (Promise) ที่ถูกปฏิเสธด้วย) อินสแตนซ์ของ functions.https.HttpsError ข้อผิดพลาดมีแอตทริบิวต์ code ซึ่งอาจเป็นค่าใดค่าหนึ่งที่ระบุไว้ ที่ functions.https.HttpsError นอกจากนี้ ข้อผิดพลาดยังมี message สตริง ซึ่งค่าเริ่มต้นจะเป็นสตริงว่าง และอาจมีฟิลด์ details ที่ไม่บังคับซึ่งมีค่าใดก็ได้ หากฟังก์ชันของคุณส่งข้อผิดพลาดอื่นที่ไม่ใช่ HttpsError ไคลเอ็นต์จะได้รับข้อผิดพลาดที่มีข้อความ INTERNAL และรหัส internal แทน

ตัวอย่างเช่น ฟังก์ชันอาจส่งข้อผิดพลาดในการตรวจสอบข้อมูลและการตรวจสอบสิทธิ์พร้อมข้อความแสดงข้อผิดพลาดเพื่อส่งกลับไปยังไคลเอ็นต์ที่เรียกใช้ฟังก์ชัน

// Checking attribute.
if (!(typeof text === "string") || text.length === 0) {
  // Throwing an HttpsError so that the client gets the error details.
  throw new HttpsError("invalid-argument", "The function must be called " +
          "with one arguments \"text\" containing the message text to add.");
}
// Checking that the user is authenticated.
if (!request.auth) {
  // Throwing an HttpsError so that the client gets the error details.
  throw new HttpsError("failed-precondition", "The function must be " +
          "called while authenticated.");
}

ติดตั้งใช้งานฟังก์ชัน Callable

หลังจากบันทึกฟังก์ชัน Callable ที่เสร็จสมบูรณ์แล้วภายใน index.js ระบบจะติดตั้งใช้งานฟังก์ชันดังกล่าวพร้อมกับฟังก์ชันอื่นๆ ทั้งหมดเมื่อคุณเรียกใช้ firebase deploy หากต้องการติดตั้งใช้งานเฉพาะฟังก์ชัน Callable ให้ใช้ --only อาร์กิวเมนต์ตามที่แสดงเพื่อทำการ ติดตั้งใช้งานบางส่วน

firebase deploy --only functions:addMessage

หากพบข้อผิดพลาดเกี่ยวกับสิทธิ์เมื่อติดตั้งใช้งานฟังก์ชัน ให้ตรวจสอบว่า ได้กำหนดบทบาท IAM ที่เหมาะสมให้กับผู้ใช้ที่เรียกใช้คำสั่งการติดตั้งใช้งานแล้ว

ตั้งค่าสภาพแวดล้อมในการพัฒนาซอฟต์แวร์ของไคลเอ็นต์

ตรวจสอบว่าคุณมีคุณสมบัติตรงตามข้อกำหนดเบื้องต้น แล้วเพิ่มทรัพยากร Dependency และ Client Library ที่จำเป็นลงในแอป

iOS+

ทำตามวิธีการเพิ่ม Firebase ลงในแอป Apple

ใช้ Swift Package Manager เพื่อติดตั้งและจัดการทรัพยากร Dependency ของ Firebase

  1. เปิดโปรเจ็กต์แอปใน Xcode แล้วไปที่ File > Add Packages
  2. เมื่อได้รับข้อความแจ้ง ให้เพิ่มที่เก็บ Firebase Apple Platforms SDK ดังนี้
  3.   https://github.com/firebase/firebase-ios-sdk.git
  4. เลือก Cloud Functions Library
  5. เพิ่มแฟล็ก -ObjC ลงในส่วน Other Linker Flags ของการตั้งค่าบิลด์ของเป้าหมาย
  6. เมื่อเสร็จแล้ว Xcode จะเริ่มจับคู่ข้อมูลและดาวน์โหลด ทรัพยากร Dependency ในเบื้องหลังโดยอัตโนมัติ

Web

  1. ทำตามวิธีการเพื่อ เพิ่ม Firebase ลงในเว็บแอป และตรวจสอบว่าได้เรียกใช้ คำสั่งต่อไปนี้จากเทอร์มินัลแล้ว
    npm install firebase@12.12.0 --save
  2. กำหนดให้ใช้ทั้ง Firebase Core และ Cloud Functions ด้วยตนเอง

     import { initializeApp } from 'firebase/app';
     import { getFunctions } from 'firebase/functions';
    
     const app = initializeApp({
         projectId: '### CLOUD FUNCTIONS PROJECT ID ###',
         apiKey: '### FIREBASE API KEY ###',
         authDomain: '### FIREBASE AUTH DOMAIN ###',
       });
     const functions = getFunctions(app);

Web

  1. ทำตามวิธีการเพิ่ม Firebase ลงในเว็บแอป
  2. เพิ่ม Firebase Core และ Cloud Functions Client Library ลงใน แอปโดยทำดังนี้
    <script src="https://www.gstatic.com/firebasejs/8.10.1/firebase.js"></script>
    <script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-functions.js"></script>

นอกจากนี้ Cloud Functions SDK ยังมีให้บริการเป็นแพ็กเกจ npm ด้วย

  1. เรียกใช้คำสั่งต่อไปนี้จากเทอร์มินัล
    npm install firebase@8.10.1 --save
  2. กำหนดให้ใช้ทั้ง Firebase Core และ Cloud Functions ด้วยตนเอง
    const firebase = require("firebase");
    // Required for side-effects
    require("firebase/functions");

Kotlin

  1. ทำตามวิธีการเพิ่ม Firebase ลงในแอป Android

  2. ในไฟล์ Gradle ของโมดูล (ระดับแอป) (โดยมากจะเป็น <project>/<app-module>/build.gradle.kts หรือ <project>/<app-module>/build.gradle) ให้เพิ่มทรัพยากร Dependency สำหรับ Cloud Functions Library สำหรับ Android เราขอแนะนำให้ใช้ Firebase Android BoM เพื่อควบคุมการกำหนดเวอร์ชันของไลบรารี

    dependencies {
        // Import the BoM for the Firebase platform
        implementation(platform("com.google.firebase:firebase-bom:34.12.0"))
    
        // Add the dependency for the Cloud Functions library
        // When using the BoM, you don't specify versions in Firebase library dependencies
        implementation("com.google.firebase:firebase-functions")
    }

    การใช้ Firebase Android BoM, จะทำให้แอปใช้ Firebase Android Library เวอร์ชันที่เข้ากันได้อยู่เสมอ

    (ทางเลือก)  เพิ่มทรัพยากร Dependency ของ Firebase Library โดยไม่ ใช้ BoM

    หากเลือกที่จะไม่ใช้ Firebase BoM คุณต้องระบุ Firebase Library แต่ละเวอร์ชัน ในบรรทัดทรัพยากร Dependency

    โปรดทราบว่าหากคุณใช้ Firebase Library หลายรายการ ในแอป เราขอแนะนำอย่างยิ่งให้ใช้ BoM เพื่อจัดการเวอร์ชันของไลบรารี ซึ่งจะช่วยให้มั่นใจได้ว่าทุกเวอร์ชันเข้ากันได้

    dependencies {
        // Add the dependency for the Cloud Functions library
        // When NOT using the BoM, you must specify versions in Firebase library dependencies
        implementation("com.google.firebase:firebase-functions:22.1.1")
    }

Java

  1. ทำตามวิธีการเพิ่ม Firebase ลงในแอป Android

  2. ในไฟล์ Gradle ของโมดูล (ระดับแอป) (โดยมากจะเป็น <project>/<app-module>/build.gradle.kts หรือ <project>/<app-module>/build.gradle) ให้เพิ่มทรัพยากร Dependency สำหรับ Cloud Functions Library สำหรับ Android เราขอแนะนำให้ใช้ Firebase Android BoM เพื่อควบคุมการกำหนดเวอร์ชันของไลบรารี

    dependencies {
        // Import the BoM for the Firebase platform
        implementation(platform("com.google.firebase:firebase-bom:34.12.0"))
    
        // Add the dependency for the Cloud Functions library
        // When using the BoM, you don't specify versions in Firebase library dependencies
        implementation("com.google.firebase:firebase-functions")
    }

    การใช้ Firebase Android BoM, จะทำให้แอปใช้ Firebase Android Library เวอร์ชันที่เข้ากันได้อยู่เสมอ

    (ทางเลือก)  เพิ่มทรัพยากร Dependency ของ Firebase Library โดยไม่ ใช้ BoM

    หากเลือกที่จะไม่ใช้ Firebase BoM คุณต้องระบุ Firebase Library แต่ละเวอร์ชัน ในบรรทัดทรัพยากร Dependency

    โปรดทราบว่าหากคุณใช้ Firebase Library หลายรายการ ในแอป เราขอแนะนำอย่างยิ่งให้ใช้ BoM เพื่อจัดการเวอร์ชันของไลบรารี ซึ่งจะช่วยให้มั่นใจได้ว่าทุกเวอร์ชันเข้ากันได้

    dependencies {
        // Add the dependency for the Cloud Functions library
        // When NOT using the BoM, you must specify versions in Firebase library dependencies
        implementation("com.google.firebase:firebase-functions:22.1.1")
    }

Dart

  1. ทำตามวิธีการเพิ่ม Firebase ลงในแอป Flutter

  2. เรียกใช้คำสั่งต่อไปนี้จากรูทของโปรเจ็กต์ Flutter เพื่อติดตั้งปลั๊กอิน

    flutter pub add cloud_functions
    
  3. เมื่อเสร็จแล้ว ให้สร้างแอปพลิเคชัน Flutter ใหม่โดยทำดังนี้

    flutter run
    
  4. เมื่อติดตั้งแล้ว คุณจะเข้าถึงปลั๊กอิน cloud_functions ได้โดยนำเข้าปลั๊กอินในโค้ด Dart ดังนี้

    import 'package:cloud_functions/cloud_functions.dart';
    

C++

สำหรับ C++ ที่ใช้กับ Android ให้ทำดังนี้

  1. ทำตามวิธีการเพิ่ม Firebase ลงในโปรเจ็กต์ C++
  2. เพิ่มไลบรารี firebase_functions ลงในไฟล์ CMakeLists.txt

สำหรับ C++ ที่ใช้กับแพลตฟอร์ม Apple ให้ทำดังนี้

  1. ทำตามวิธีการเพิ่ม Firebase ลงในโปรเจ็กต์ C++
  2. เพิ่ม Cloud Functions Pod ลงใน Podfile โดยทำดังนี้
    pod 'Firebase/Functions'
  3. บันทึกไฟล์ แล้วเรียกใช้คำสั่งต่อไปนี้
    pod install
  4. เพิ่มเฟรมเวิร์ก Firebase Core และ Cloud Functions จาก Firebase C++ SDK ลงในโปรเจ็กต์ Xcode โดยทำดังนี้
    • firebase.framework
    • firebase_functions.framework

Unity

  1. ทำตามวิธีการเพิ่ม Firebase ลงในโปรเจ็กต์ Unity
  2. เพิ่ม FirebaseFunctions.unitypackage จาก Firebase Unity SDK ลงใน โปรเจ็กต์ Unity

เริ่มต้น Client SDK

เริ่มต้นอินสแตนซ์ของ Cloud Functions โดยทำดังนี้

Swift

lazy var functions = Functions.functions()

Objective-C

@property(strong, nonatomic) FIRFunctions *functions;
// ...
self.functions = [FIRFunctions functions];

Web

firebase.initializeApp({
  apiKey: '### FIREBASE API KEY ###',
  authDomain: '### FIREBASE AUTH DOMAIN ###',
  projectId: '### CLOUD FUNCTIONS PROJECT ID ###'
  databaseURL: 'https://### YOUR DATABASE NAME ###.firebaseio.com',
});

// Initialize Cloud Functions through Firebase
var functions = firebase.functions();

Web

const app = initializeApp({
  projectId: '### CLOUD FUNCTIONS PROJECT ID ###',
  apiKey: '### FIREBASE API KEY ###',
  authDomain: '### FIREBASE AUTH DOMAIN ###',
});
const functions = getFunctions(app);

Kotlin

private lateinit var functions: FirebaseFunctions
// ...
functions = Firebase.functions

Java

private FirebaseFunctions mFunctions;
// ...
mFunctions = FirebaseFunctions.getInstance();

Dart

final functions = FirebaseFunctions.instance;

C++

firebase::functions::Functions* functions;
// ...
functions = firebase::functions::Functions::GetInstance(app);

Unity

functions = Firebase.Functions.DefaultInstance;

เรียกใช้ฟังก์ชัน

Swift

functions.httpsCallable("addMessage").call(["text": inputField.text]) { result, error in
  if let error = error as NSError? {
    if error.domain == FunctionsErrorDomain {
      let code = FunctionsErrorCode(rawValue: error.code)
      let message = error.localizedDescription
      let details = error.userInfo[FunctionsErrorDetailsKey]
    }
    // ...
  }
  if let data = result?.data as? [String: Any], let text = data["text"] as? String {
    self.resultField.text = text
  }
}

Objective-C

[[_functions HTTPSCallableWithName:@"addMessage"] callWithObject:@{@"text": _inputField.text}
                                                      completion:^(FIRHTTPSCallableResult * _Nullable result, NSError * _Nullable error) {
  if (error) {
    if ([error.domain isEqual:@"com.firebase.functions"]) {
      FIRFunctionsErrorCode code = error.code;
      NSString *message = error.localizedDescription;
      NSObject *details = error.userInfo[@"details"];
    }
    // ...
  }
  self->_resultField.text = result.data[@"text"];
}];

Web

var addMessage = firebase.functions().httpsCallable('addMessage');
addMessage({ text: messageText })
  .then((result) => {
    // Read result of the Cloud Function.
    var sanitizedMessage = result.data.text;
  });

Web

import { getFunctions, httpsCallable } from "firebase/functions";

const functions = getFunctions();
const addMessage = httpsCallable(functions, 'addMessage');
addMessage({ text: messageText })
  .then((result) => {
    // Read result of the Cloud Function.
    /** @type {any} */
    const data = result.data;
    const sanitizedMessage = data.text;
  });

Kotlin

private fun addMessage(text: String): Task<String> {
    // Create the arguments to the callable function.
    val data = hashMapOf(
        "text" to text,
        "push" to true,
    )

    return functions
        .getHttpsCallable("addMessage")
        .call(data)
        .continueWith { task ->
            // This continuation runs on either success or failure, but if the task
            // has failed then result will throw an Exception which will be
            // propagated down.
            val result = task.result?.data as String
            result
        }
}

Java

private Task<String> addMessage(String text) {
    // Create the arguments to the callable function.
    Map<String, Object> data = new HashMap<>();
    data.put("text", text);
    data.put("push", true);

    return mFunctions
            .getHttpsCallable("addMessage")
            .call(data)
            .continueWith(new Continuation<HttpsCallableResult, String>() {
                @Override
                public String then(@NonNull Task<HttpsCallableResult> task) throws Exception {
                    // This continuation runs on either success or failure, but if the task
                    // has failed then getResult() will throw an Exception which will be
                    // propagated down.
                    String result = (String) task.getResult().getData();
                    return result;
                }
            });
}

Dart

    final result = await FirebaseFunctions.instance.httpsCallable('addMessage').call(
      {
        "text": text,
        "push": true,
      },
    );
    _response = result.data as String;

C++

firebase::Future<firebase::functions::HttpsCallableResult> AddMessage(
    const std::string& text) {
  // Create the arguments to the callable function.
  firebase::Variant data = firebase::Variant::EmptyMap();
  data.map()["text"] = firebase::Variant(text);
  data.map()["push"] = true;

  // Call the function and add a callback for the result.
  firebase::functions::HttpsCallableReference doSomething =
      functions->GetHttpsCallable("addMessage");
  return doSomething.Call(data);
}

Unity

private Task<string> addMessage(string text) {
  // Create the arguments to the callable function.
  var data = new Dictionary<string, object>();
  data["text"] = text;
  data["push"] = true;

  // Call the function and extract the operation from the result.
  var function = functions.GetHttpsCallable("addMessage");
  return function.CallAsync(data).ContinueWith((task) => {
    return (string) task.Result.Data;
  });
}

จัดการข้อผิดพลาดในไคลเอ็นต์

ไคลเอ็นต์จะได้รับข้อผิดพลาดหากเซิร์ฟเวอร์ส่งข้อผิดพลาดกลับมาหรือหากคำสัญญา (Promise) ที่ได้ถูกปฏิเสธ

หากข้อผิดพลาดที่ฟังก์ชันส่งกลับมาเป็นประเภท function.https.HttpsError, ไคลเอ็นต์จะได้รับ code, message, และ details ของข้อผิดพลาดจาก ข้อผิดพลาดของเซิร์ฟเวอร์ ไม่เช่นนั้น ข้อผิดพลาดจะมีข้อความ INTERNAL และรหัส INTERNAL ดูคำแนะนำเกี่ยวกับวิธี จัดการข้อผิดพลาดในฟังก์ชัน Callable

Swift

if let error = error as NSError? {
  if error.domain == FunctionsErrorDomain {
    let code = FunctionsErrorCode(rawValue: error.code)
    let message = error.localizedDescription
    let details = error.userInfo[FunctionsErrorDetailsKey]
  }
  // ...
}

Objective-C

if (error) {
  if ([error.domain isEqual:@"com.firebase.functions"]) {
    FIRFunctionsErrorCode code = error.code;
    NSString *message = error.localizedDescription;
    NSObject *details = error.userInfo[@"details"];
  }
  // ...
}

Web

var addMessage = firebase.functions().httpsCallable('addMessage');
addMessage({ text: messageText })
  .then((result) => {
    // Read result of the Cloud Function.
    var sanitizedMessage = result.data.text;
  })
  .catch((error) => {
    // Getting the Error details.
    var code = error.code;
    var message = error.message;
    var details = error.details;
    // ...
  });

Web

import { getFunctions, httpsCallable } from "firebase/functions";

const functions = getFunctions();
const addMessage = httpsCallable(functions, 'addMessage');
addMessage({ text: messageText })
  .then((result) => {
    // Read result of the Cloud Function.
    /** @type {any} */
    const data = result.data;
    const sanitizedMessage = data.text;
  })
  .catch((error) => {
    // Getting the Error details.
    const code = error.code;
    const message = error.message;
    const details = error.details;
    // ...
  });

Kotlin

addMessage(inputMessage)
    .addOnCompleteListener { task ->
        if (!task.isSuccessful) {
            val e = task.exception
            if (e is FirebaseFunctionsException) {
                val code = e.code
                val details = e.details
            }
        }
    }

Java

addMessage(inputMessage)
  .addOnCompleteListener(new OnCompleteListener<String>() {
    @Override
    public void onComplete(@NonNull Task<String> task) {
      if (!task.isSuccessful()) {
        Exception e = task.getException();
        if (e instanceof FirebaseFunctionsException) {
          FirebaseFunctionsException ffe = (FirebaseFunctionsException) e;
          FirebaseFunctionsException.Code code = ffe.getCode();
          Object details = ffe.getDetails();
        }
      }
    }
  });

Dart

try {
  final result =
      await FirebaseFunctions.instance.httpsCallable('addMessage').call();
} on FirebaseFunctionsException catch (error) {
  print(error.code);
  print(error.details);
  print(error.message);
}

C++

void OnAddMessageCallback(
    const firebase::Future<firebase::functions::HttpsCallableResult>& future) {
  if (future.error() != firebase::functions::kErrorNone) {
    // Function error code, will be kErrorInternal if the failure was not
    // handled properly in the function call.
    auto code = static_cast<firebase::functions::Error>(future.error());

    // Display the error in the UI.
    DisplayError(code, future.error_message());
    return;
  }

  const firebase::functions::HttpsCallableResult* result = future.result();
  firebase::Variant data = result->data();
  // This will assert if the result returned from the function wasn't a string.
  std::string message = data.string_value();
  // Display the result in the UI.
  DisplayResult(message);
}

// ...

// ...
  auto future = AddMessage(message);
  future.OnCompletion(OnAddMessageCallback);
  // ...

Unity

 addMessage(text).ContinueWith((task) => {
  if (task.IsFaulted) {
    foreach (var inner in task.Exception.InnerExceptions) {
      if (inner is FunctionsException) {
        var e = (FunctionsException) inner;
        // Function error code, will be INTERNAL if the failure
        // was not handled properly in the function call.
        var code = e.ErrorCode;
        var message = e.ErrorMessage;
      }
    }
  } else {
    string result = task.Result;
  }
});

แนะนำ: ป้องกันการละเมิดด้วย App Check

ก่อนเปิดตัวแอป คุณควรเปิดใช้ App Check เพื่อช่วยให้มั่นใจว่าเฉพาะแอปของคุณเท่านั้นที่จะเข้าถึงปลายทางของฟังก์ชัน Callable ได้