Firebase 프로젝트 관리
함수
함수 | 설명 |
---|---|
getProjectManagement(앱) | 기본 앱 또는 지정된 앱의 ProjectManagement 서비스를 가져옵니다.getProjectManagement() 를 인수 없이 호출하여 기본 앱의 ProjectManagement 서비스에 액세스하거나, getProjectManagement(app) 로 호출하여 특정 앱과 연결된 ProjectManagement 서비스에 액세스할 수 있습니다. |
클래스
클래스 | 설명 |
---|---|
Android 앱 | Firebase Android 앱에 대한 참조입니다.이 생성자를 직접 호출하지 마세요. 대신 ProjectManagement.androidApp()을 사용하세요. |
FirebaseProjectManagementError | Firebase 프로젝트 관리 오류 코드 구조 PrefixedFirebaseError를 확장합니다. |
iOS 앱 | Firebase iOS 앱에 대한 참조입니다.이 생성자를 직접 호출하지 마세요. 대신 ProjectManagement.iosApp()을 사용하세요. |
프로젝트 관리 | Firebase ProjectManagement 서비스 인터페이스 |
ShaCertificate | SHA-1 또는 SHA-256 인증서입니다.이 생성자를 직접 호출하지 마세요. 대신 [projectManagement.shaCertificate() ](projectManagement.ProjectManagement#shaCertificate)을 사용하세요. |
열거
열거 | 설명 |
---|---|
AppPlatform | Firebase 앱과 연결할 수 있는 플랫폼입니다. |
인터페이스
인터페이스 | 설명 |
---|---|
AndroidAppMetadata | Firebase Android 앱에 관한 메타데이터입니다. |
AppMetadata | Firebase 앱에 대한 메타데이터입니다. |
IosAppMetadata | Firebase iOS 앱에 대한 메타데이터입니다. |
유형 별칭
별칭 입력 | 설명 |
---|---|
ProjectManagementErrorCode |
getProjectManagement(앱)
기본 앱 또는 지정된 앱의 ProjectManagement 서비스를 가져옵니다.
getProjectManagement()
는 인수 없이 호출하여 기본 앱의 ProjectManagement
서비스에 액세스하거나 getProjectManagement(app)
로 호출하여 특정 앱과 연결된 ProjectManagement
서비스에 액세스할 수 있습니다.
서명:
export declare function getProjectManagement(app?: App): ProjectManagement;
매개변수
매개변수 | 유형 | 설명 |
---|---|---|
앱 | 앱 | ProjectManagement 서비스를 반환할 선택적 앱입니다. 제공하지 않으면 기본 ProjectManagement 서비스가 반환됩니다. * |
반환:
제공된 앱이 없는 경우 기본 ProjectManagement
서비스 또는 제공된 앱과 연결된 ProjectManagement
서비스입니다.
예 1
// Get the ProjectManagement service for the default app
const defaultProjectManagement = getProjectManagement();
예 2
// Get the ProjectManagement service for a given app
const otherProjectManagement = getProjectManagement(otherApp);
프로젝트 관리 오류 코드
서명:
export type ProjectManagementErrorCode = 'already-exists' | 'authentication-error' | 'internal-error' | 'invalid-argument' | 'invalid-project-id' | 'invalid-server-response' | 'not-found' | 'service-unavailable' | 'unknown-error';
AppPlatform
Firebase 앱과 연결할 수 있는 플랫폼입니다.
서명:
export declare enum AppPlatform
열거형 구성원
구성원 | 값 | 설명 |
---|---|---|
Android | "ANDROID" |
Firebase 앱은 Android와 연결됩니다. |
iOS | "IOS" |
Firebase 앱은 iOS와 연결됩니다. |
플랫폼 알 수 없음 | "PLATFORM_UNKNOWN" |
알 수 없는 상태입니다. 설정되지 않은 값을 구별하는 데만 사용됩니다. |