Dengan SDK klien Cloud Functions for Firebase, Anda dapat memanggil fungsi langsung dari aplikasi Firebase. Untuk memanggil fungsi dari aplikasi Anda dengan cara ini, tulis dan deploy ungsi Callable HTTP di Cloud Functions, lalu tambahkan logika klien untuk memanggil fungsi dari aplikasi Anda.
Perlu diingat bahwa fungsi callable HTTP mirip, tetapi tidak sama dengan fungsi HTTP. Jika ingin menggunakan fungsi callable HTTP, Anda harus menggunakan SDK klien untuk platform Anda bersama dengan API backend (atau menerapkan protokol). Berikut adalah sejumlah perbedaan mendasar antara fungsi callable dan fungsi HTTP:
- Dengan fungsi callable, token Firebase Authentication, token FCM, dan token App Check, jika tersedia, akan otomatis disertakan dalam permintaan.
- Pemicu akan melakukan deserialisasi isi permintaan dan memvalidasi token autentikasi secara otomatis.
Firebase SDK untuk Cloud Functions generasi ke-2 dan yang lebih baru memiliki interoperabilitas dengan versi minimum SDK klien Firebase berikut untuk mendukung fungsi Callable HTTPS:
- Firebase SDK untuk platform Apple 10.15.0
- Firebase SDK untuk Android 20.3.1
- Firebase Modular Web SDK v. 9.7.0
Jika Anda ingin menambahkan fungsi serupa ke aplikasi yang dibangun di platform yang tidak didukung, baca Spesifikasi Protokol untuk https.onCall
. Panduan ini selebihnya berisi petunjuk
cara menulis, men-deploy, dan memanggil
fungsi callable HTTP untuk platform Apple, Android, web, C++, dan Unity.
Menulis dan men-deploy fungsi callable
Contoh kode di bagian ini didasarkan pada contoh panduan memulai lengkap yang menunjukkan cara mengirim permintaan ke fungsi sisi server dan menerima respons menggunakan salah satu SDK Klien. Untuk memulai, impor modul yang diperlukan:
Node.js
// Dependencies for callable functions.
const {onCall, HttpsError} = require("firebase-functions/v2/https");
const {logger} = require("firebase-functions/v2");
// Dependencies for the addMessage function.
const {getDatabase} = require("firebase-admin/database");
const sanitizer = require("./sanitizer");
Python (pratinjau)
# Dependencies for callable functions.
from firebase_functions import https_fn, options
# Dependencies for writing to Realtime Database.
from firebase_admin import db, initialize_app
Gunakan pengendali permintaan untuk platform Anda (functions.https.onCall
) atau on_call
) untuk membuat fungsi callable HTTPS Metode ini
mengambil parameter permintaan:
Node.js
// Saves a message to the Firebase Realtime Database but sanitizes the
// text by removing swearwords.
exports.addmessage = onCall((request) => {
// ...
});
Python (pratinjau)
@https_fn.on_call()
def addmessage(req: https_fn.CallableRequest) -> Any:
"""Saves a message to the Firebase Realtime Database but sanitizes the text
by removing swear words."""
Parameter request
berisi data yang diteruskan dari aplikasi klien serta konteks tambahan seperti status autentikasi. Untuk fungsi callable yang menyimpan pesan teks ke Realtime Database,
misalnya, data
dapat berisi teks pesan, bersama dengan informasi autentikasi
di auth
:
Node.js
// 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;
Python (pratinjau)
# Message text passed from the client.
text = req.data["text"]
# Authentication / user information is automatically added to the request.
uid = req.auth.uid
name = req.auth.token.get("name", "")
picture = req.auth.token.get("picture", "")
email = req.auth.token.get("email", "")
Jarak antara lokasi fungsi callable dan lokasi klien yang melakukan panggilan dapat menghasilkan latensi jaringan. Untuk mengoptimalkan performa, sebaiknya tentukan lokasi fungsi jika bisa diterapkan, dan pastikan untuk menyelaraskan lokasi fungsi callable dengan lokasi yang ditetapkan saat menginisialisasi SDK di sisi klien.
Secara opsional, Anda dapat menambahkan pengesahan App Check untuk membantu melindungi resource backend dari penyalahgunaan, seperti penipuan tagihan atau phishing. Lihat Mengaktifkan penerapan App Check untuk Cloud Functions.
Mengirim kembali hasil
Untuk mengirim data kembali ke klien, tampilkan data yang bisa dienkode JSON. Misalnya, untuk menampilkan hasil operasi penjumlahan:
Node.js
// returning result.
return {
firstNumber: firstNumber,
secondNumber: secondNumber,
operator: "+",
operationResult: firstNumber + secondNumber,
};
Python (pratinjau)
return {
"firstNumber": first_number,
"secondNumber": second_number,
"operator": "+",
"operationResult": first_number + second_number,
}
Teks bersih dari contoh teks pesan ditampilkan ke klien dan ke Realtime Database. Di Node.js, hal ini dapat dilakukan secara asinkron menggunakan promise JavaScript:
Node.js
// 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};
})
Python (pratinjau)
# Saving the new message to the Realtime Database.
sanitized_message = sanitize_text(text) # Sanitize message.
db.reference("/messages").push(
{ # type: ignore
"text": sanitized_message,
"author": {
"uid": uid,
"name": name,
"picture": picture,
"email": email,
},
}
)
print("New message written")
# Returning the sanitized message to the client.
return {"text": sanitized_message}
Mengonfigurasi CORS (Cross-Origin Resource Sharing)
Gunakan opsi cors
untuk mengontrol asal yang dapat mengakses fungsi Anda.
Secara default, fungsi callable telah dikonfigurasi dengan CORS untuk mengizinkan permintaan dari semua asal. Untuk mengizinkan beberapa permintaan lintas asal, tetapi tidak semua, teruskan daftar domain atau ekspresi reguler tertentu yang akan diizinkan. Contoh:
Node.js
const { onCall } = require("firebase-functions/v2/https");
exports.getGreeting = onCall(
{ cors: [/firebase\.com$/, "flutter.com"] },
(request) => {
return "Hello, world!";
}
);
Untuk melarang permintaan lintas asal, tetapkan kebijakan cors
ke false
.
Menangani error
Untuk memastikan klien mendapatkan detail error yang berguna, tampilkan error dari fungsi callable
dengan menampilkan (atau untuk Node.js yang menampilkan Promise yang ditolak) sebuah instance
functions.https.HttpsError
atau https_fn.HttpsError
.
Error tersebut memiliki atribut code
yang dapat berupa salah satu nilai yang tercantum dalam
Kode status gRPC.
Error tersebut juga memiliki string message
, yang secara default berupa string kosong. Error ini juga dapat memiliki kolom details
opsional dengan nilai sembarang. Jika error selain error HTTPS ditampilkan dari fungsi Anda,
klien akan menerima error dengan pesan INTERNAL
dan kode
internal
.
Misalnya, fungsi dapat menampilkan error proses validasi data dan autentikasi dengan pesan error yang akan ditampilkan ke klien yang melakukan panggilan:
Node.js
// 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.");
}
Python (pratinjau)
# Checking attribute.
if not isinstance(text, str) or len(text) < 1:
# Throwing an HttpsError so that the client gets the error details.
raise https_fn.HttpsError(
code=https_fn.FunctionsErrorCode.INVALID_ARGUMENT,
message=(
'The function must be called with one argument, "text",'
" containing the message text to add."
),
)
# Checking that the user is authenticated.
if req.auth is None:
# Throwing an HttpsError so that the client gets the error details.
raise https_fn.HttpsError(
code=https_fn.FunctionsErrorCode.FAILED_PRECONDITION,
message="The function must be called while authenticated.",
)
Men-deploy fungsi callable
Setelah Anda menyimpan fungsi callable yang telah selesai di dalam index.js
, fungsi tersebut akan di-deploy bersamaan dengan semua fungsi lainnya saat Anda menjalankan firebase deploy
.
Untuk men-deploy fungsi callable saja, gunakan argumen --only
seperti yang ditunjukkan untuk menjalankan deployment sebagian:
firebase deploy --only functions:addMessage
Jika Anda mengalami error izin saat men-deploy fungsi, pastikan peran IAM yang sesuai ditetapkan kepada pengguna yang menjalankan perintah deployment.
Menyiapkan lingkungan pengembangan klien
Pastikan Anda memenuhi semua prasyarat, lalu tambahkan dependensi dan library klien yang dibutuhkan ke aplikasi Anda.
iOS+
Ikuti petunjuk untuk menambahkan Firebase ke aplikasi Apple Anda.
Gunakan Swift Package Manager untuk menginstal dan mengelola dependensi Firebase.
- Di Xcode, dengan project aplikasi Anda dalam keadaan terbuka, buka File > Add Packages.
- Saat diminta, tambahkan repositori SDK platform Apple Firebase:
- Pilih library Cloud Functions.
- Setelah selesai, Xcode akan otomatis mulai me-resolve dan mendownload dependensi Anda di latar belakang.
https://github.com/firebase/firebase-ios-sdk
API modular web
- Ikuti petunjuk untuk
menambahkan Firebase ke aplikasi Web Anda. Pastikan untuk menjalankan perintah berikut dari terminal Anda:
npm install firebase@10.4.0 --save
Wajibkan Firebase core dan Cloud Functions secara manual:
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);
Kotlin+KTX
Ikuti petunjuk untuk menambahkan Firebase ke aplikasi Android Anda.
Dalam file Gradle modul (level aplikasi) (biasanya
<project>/<app-module>/build.gradle.kts
atau<project>/<app-module>/build.gradle
), tambahkan dependensi untuk library Android Cloud Functions. Sebaiknya gunakan Firebase Android BoM untuk mengontrol pembuatan versi library.dependencies { // Import the BoM for the Firebase platform implementation(platform("com.google.firebase:firebase-bom:32.3.1")) // 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-ktx") }
Dengan menggunakan Firebase Android BoM, aplikasi Anda akan selalu menggunakan versi library Android Firebase yang kompatibel.
(Alternatif) Tambahkan dependensi library Firebase tanpa menggunakan BoM
Jika memilih untuk tidak menggunakan Firebase BoM, Anda harus menentukan setiap versi library Firebase di baris dependensinya.
Perlu diperhatikan bahwa jika Anda menggunakan beberapa library Firebase di aplikasi, sebaiknya gunakan BoM untuk mengelola versi library, yang memastikan bahwa semua versi kompatibel.
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-ktx:20.3.1") }
Java
Ikuti petunjuk untuk menambahkan Firebase ke aplikasi Android Anda.
Dalam file Gradle modul (level aplikasi) (biasanya
<project>/<app-module>/build.gradle.kts
atau<project>/<app-module>/build.gradle
), tambahkan dependensi untuk library Android Cloud Functions. Sebaiknya gunakan Firebase Android BoM untuk mengontrol pembuatan versi library.dependencies { // Import the BoM for the Firebase platform implementation(platform("com.google.firebase:firebase-bom:32.3.1")) // 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") }
Dengan menggunakan Firebase Android BoM, aplikasi Anda akan selalu menggunakan versi library Android Firebase yang kompatibel.
(Alternatif) Tambahkan dependensi library Firebase tanpa menggunakan BoM
Jika memilih untuk tidak menggunakan Firebase BoM, Anda harus menentukan setiap versi library Firebase di baris dependensinya.
Perlu diperhatikan bahwa jika Anda menggunakan beberapa library Firebase di aplikasi, sebaiknya gunakan BoM untuk mengelola versi library, yang memastikan bahwa semua versi kompatibel.
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:20.3.1") }
Menginisialisasi SDK klien
Lakukan inisialisasi instance Cloud Functions:
Swift
lazy var functions = Functions.functions()
Objective-C
@property(strong, nonatomic) FIRFunctions *functions;
// ...
self.functions = [FIRFunctions functions];
API modular web
const app = initializeApp({
projectId: '### CLOUD FUNCTIONS PROJECT ID ###',
apiKey: '### FIREBASE API KEY ###',
authDomain: '### FIREBASE AUTH DOMAIN ###',
});
const functions = getFunctions(app);
Kotlin+KTX
private lateinit var functions: FirebaseFunctions // ... functions = Firebase.functions
Java
private FirebaseFunctions mFunctions; // ... mFunctions = FirebaseFunctions.getInstance();
Memanggil fungsi
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"];
}];
API dengan namespace web
var addMessage = firebase.functions().httpsCallable('addMessage');
addMessage({ text: messageText })
.then((result) => {
// Read result of the Cloud Function.
var sanitizedMessage = result.data.text;
});
API modular 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+KTX
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;
});
}
Menangani error pada klien
Klien akan menerima error jika server menampilkan error atau promise yang dihasilkan ditolak.
Jika jenis error yang ditampilkan oleh fungsi adalah function.https.HttpsError
, klien akan menerima error code
, message
, dan details
dari error server. Untuk selain jenis tersebut, error akan berisi pesan INTERNAL
dan kode INTERNAL
. Baca panduan untuk menangani error di fungsi callable Anda.
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"];
}
// ...
}
API dengan namespace 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;
// ...
});
API modular 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+KTX
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;
}
});
Rekomendasi: Mencegah penyalahgunaan dengan App Check
Sebelum meluncurkan aplikasi, sebaiknya aktifkan App Check untuk membantu memastikan bahwa hanya aplikasi Anda yang dapat mengakses endpoint fungsi callable Anda.