firebase-admin.installations package

รหัสอินสแตนซ์ของ Firebase

ฟังก์ชัน

ฟังก์ชัน คำอธิบาย
getinstalls(แอป) รับบริการการติดตั้งสำหรับแอปเริ่มต้นหรือแอปที่กำหนด getInstallations() เรียกใช้ได้โดยไม่มีอาร์กิวเมนต์เพื่อเข้าถึงบริการ Installations ของแอปเริ่มต้น หรือใช้ getInstallations(app) เพื่อเข้าถึงบริการ Installations ที่เชื่อมโยงกับแอปใดแอปหนึ่ง

ชั้นเรียน

ชั้น คำอธิบาย
FirebaseInstalledsError โครงสร้างรหัสข้อผิดพลาดของบริการการติดตั้ง Firebase ขยายเวลา FirebaseError
การติดตั้ง บริการ Installations สำหรับแอปปัจจุบัน
INSTALLsClientErrorCode

getInstalls(แอป)

รับบริการการติดตั้งสำหรับแอปเริ่มต้นหรือแอปที่กำหนด

สามารถเรียก getInstallations() ได้โดยไม่ต้องมีอาร์กิวเมนต์เพื่อเข้าถึงบริการ Installations ของแอปเริ่มต้น หรือใช้เป็น getInstallations(app) เพื่อเข้าถึงบริการของ Installations ที่เชื่อมโยงกับแอปที่ต้องการ

ลายเซ็น:

export declare function getInstallations(app?: App): Installations;

พารามิเตอร์

พารามิเตอร์ ประเภท คำอธิบาย
แอป แอป แอปที่ไม่บังคับที่มีบริการ Installations ที่จะส่งคืน หากไม่ได้ระบุไว้ ระบบจะแสดงผลบริการ Installations เริ่มต้น

การคืนสินค้า:

การติดตั้ง

บริการ Installations เริ่มต้นหากไม่ได้ให้แอปไว้ หรือบริการ Installations ที่เชื่อมโยงกับแอปที่ระบุ

ตัวอย่างที่ 1

// Get the Installations service for the default app
const defaultInstallations = getInstallations();

ตัวอย่างที่ 2

// Get the Installations service for a given app
const otherInstallations = getInstallations(otherApp);