Cloud Functions for Firebase用戶端 SDK 可讓您直接從 Firebase 應用程式呼叫函式。如要透過這種方式從應用程式呼叫函式,請在 Cloud Functions 中編寫及部署 HTTP 可呼叫函式,然後新增用戶端邏輯,從應用程式呼叫函式。
請務必注意,HTTP 可呼叫函式與 HTTP 函式類似,但並不相同。如要使用 HTTP 可呼叫函式,您必須搭配後端 API (或實作通訊協定),使用適用於您平台的用戶端 SDK。可呼叫函式與 HTTP 函式的主要差異如下:
- 如果要求中包含可呼叫的函式、Firebase Authentication 符記、FCM 符記和 App Check 符記,系統會自動將這些符記納入要求。
- 觸發程序會自動將要求主體去序列化,並驗證授權權杖。
Cloud Functions 第 2 代以上裝置的 Firebase SDK 可與下列最低版本的 Firebase 用戶端 SDK 互通,以支援 HTTPS 可呼叫函式:
- Firebase 適用於 Apple 平台的 SDK 12.5.0
- Firebase SDK for Android 22.0.1
- Firebase Modular Web SDK 9.7.0 版
如要在以不支援的平台建構的應用程式中新增類似功能,請參閱 https.onCall 的通訊協定規格。本指南的其餘部分會說明如何為 Apple 平台、Android、網頁、C++ 和 Unity 編寫、部署及呼叫 HTTP 可呼叫函式。
編寫及部署可呼叫的函式
使用 functions.https.onCall 建立 HTTPS 可呼叫函式。這個方法會採用兩個參數:data 和選用的 context:
// Saves a message to the Firebase Realtime Database but sanitizes the // text by removing swearwords. exports.addMessage = functions.https.onCall((data, context) => { // ... });
舉例來說,如果可呼叫的函式會將簡訊儲存至 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;
可呼叫函式的位置與呼叫端用戶端的位置之間的距離,可能會造成網路延遲。如要提升效能,請考慮在適用的情況下指定函式位置,並確保可呼叫項目的位置與您在用戶端初始化 SDK 時設定的位置一致。
您也可以選擇附加 App Check 認證,保護後端資源,避免遭到帳單詐欺或網路詐騙等濫用行為影響。請參閱「為 Cloud Functions 啟用 App Check 強制執行功能」。
傳回結果
如要將資料傳回給用戶端,請傳回可進行 JSON 編碼的資料。舉例來說,如要傳回加法運算的結果:
// returning result.
return {
  firstNumber: firstNumber,
  secondNumber: secondNumber,
  operator: "+",
  operationResult: firstNumber + secondNumber,
};
如要在非同步作業後傳回資料,請傳回 Promise。承諾傳回的資料會傳回給用戶端。舉例來說,您可以傳回可呼叫函式寫入 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};
})
處理錯誤
為確保用戶端取得實用的錯誤詳細資料,請透過擲回 (或傳回遭拒的 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.");
}
部署可呼叫函式
在 index.js 中儲存已完成的可呼叫函式後,執行 firebase deploy 時,系統會一併部署該函式和所有其他函式。如要只部署可呼叫函式,請使用 --only 引數,如以下範例所示,執行部分部署:
firebase deploy --only functions:addMessage
如果在部署函式時發生權限錯誤,請確認已將適當的 IAM 角色指派給執行部署指令的使用者。
設定用戶端開發環境
請確認您符合所有必要條件,然後將必要的依附元件和用戶端程式庫新增至應用程式。
iOS+
按照操作說明將 Firebase 新增至 Apple 應用程式。
使用 Swift Package Manager 安裝及管理 Firebase 依附元件。
- 在 Xcode 中保持開啟應用程式專案,然後依序點選「File」(檔案) 和「Add Packages」(新增 Package)。
- 系統提示時,請新增 Firebase Apple 平台 SDK 存放區:
- 選擇 Cloud Functions 程式庫。
- 將 -ObjC標記加進目標建構設定的「Other Linker Flags」部分。
- 完成後,Xcode 會自動開始在背景中解析並下載依附元件。
https://github.com/firebase/firebase-ios-sdk.git
Web
- 按照操作說明將 Firebase 新增至您的網頁應用程式。請務必從終端機執行下列指令:npm install firebase@12.5.0 --save 
- 手動要求 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
- 按照操作說明將 Firebase 新增至您的網頁應用程式。
- 將 Firebase Core 和 Cloud Functions 用戶端程式庫新增至應用程式:<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 套件。
- 從終端機執行下列指令:
npm install firebase@8.10.1 --save 
- 手動要求 Firebase Core 和 Cloud Functions:
const firebase = require("firebase"); // Required for side-effects require("firebase/functions"); 
Kotlin
- 按照操作說明將 Firebase 新增至 Android 應用程式。 
- 在模組 (應用程式層級) Gradle 檔案 (通常是 - <project>/<app-module>/build.gradle.kts或- <project>/<app-module>/build.gradle) 中,加入 Android 適用的 Cloud Functions 程式庫依附元件。建議使用 Firebase Android BoM 控制程式庫版本。- dependencies { // Import the BoM for the Firebase platform implementation(platform("com.google.firebase:firebase-bom:34.4.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 程式庫版本。 - (替代做法) 不使用 BoM 新增 Firebase 程式庫依附元件 - 如果選擇不使用 Firebase BoM,則必須在依附元件行中指定每個 Firebase 程式庫版本。 - 請注意,如果應用程式使用多個 Firebase 程式庫,強烈建議使用 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.0.1") } 
Java
- 按照操作說明將 Firebase 新增至 Android 應用程式。 
- 在模組 (應用程式層級) Gradle 檔案 (通常是 - <project>/<app-module>/build.gradle.kts或- <project>/<app-module>/build.gradle) 中,加入 Android 適用的 Cloud Functions 程式庫依附元件。建議使用 Firebase Android BoM 控制程式庫版本。- dependencies { // Import the BoM for the Firebase platform implementation(platform("com.google.firebase:firebase-bom:34.4.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 程式庫版本。 - (替代做法) 不使用 BoM 新增 Firebase 程式庫依附元件 - 如果選擇不使用 Firebase BoM,則必須在依附元件行中指定每個 Firebase 程式庫版本。 - 請注意,如果應用程式使用多個 Firebase 程式庫,強烈建議使用 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.0.1") } 
Dart
- 按照操作說明將 Firebase 新增至 Flutter 應用程式。 
- 在 Flutter 專案的根目錄中執行下列指令,安裝外掛程式: - flutter pub add cloud_functions
- 完成後,請重建 Flutter 應用程式: - flutter run
- 安裝完成後,您可以在 Dart 程式碼中匯入外掛程式,存取 - cloud_functions:- import 'package:cloud_functions/cloud_functions.dart';
C++
如要瞭解 Android 上的 C++,請參閱下列主題:
- 按照操作說明將 Firebase 新增至 C++ 專案。
- 將 firebase_functions程式庫新增至CMakeLists.txt檔案。
適用於 C++ 和 Apple 平台:
- 按照操作說明將 Firebase 新增至 C++ 專案。
- 將 Cloud Functions Pod 新增至 Podfile:pod 'Firebase/Functions' 
- 儲存檔案,然後執行下列指令:
pod install 
- 將 Firebase 核心和 Cloud Functions 架構從 
Firebase C++ SDK 新增至 Xcode 專案。
- firebase.framework
- firebase_functions.framework
 
Unity
- 按照操作說明將 Firebase 新增至您的 Unity 專案。
- 將 Firebase Unity SDK 中的 FirebaseFunctions.unitypackage新增至 Unity 專案。
初始化用戶端 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 代碼。請參閱處理可呼叫函式中的錯誤指引。
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,確保只有您的應用程式可以存取可呼叫函式端點。