Method: projects.iosApps.getConfig

取得與指定 IosApp 相關聯的設定構件。

HTTP 要求

GET https://firebase.googleapis.com/v1beta1/{name=projects/*/iosApps/*/config}

這個網址使用 gRPC 轉碼語法。

路徑參數

參數
name

string

所下載應用程式設定的資源名稱,格式如下:

projects/PROJECT_IDENTIFIER/iosApps/APP_ID/config


由於 APP_ID 是專屬 ID,因此在此可使用子集合存取模式中的專屬資源,格式如下:

projects/-/iosApps/APP_ID


如要進一步瞭解 PROJECT_IDENTIFIERAPP_ID 值,請參閱 IosApp name 欄位。

要求主體

要求主體必須為空白。

回應主體

如果成功,回應主體會含有以下結構的資料:

單一 iOS 版 Firebase 應用程式的設定中繼資料。

JSON 表示法
{
  "configFilename": string,
  "configFileContents": string
}
欄位
configFilename

string

IosApp 設定構件的檔案名稱通常會儲存為檔案名稱。
例如:GoogleService-Info.plist

configFileContents

string (bytes format)

XML 設定檔的內容。

Base64 編碼字串。

授權範圍

需要下列其中一種 OAuth 範圍:

  • https://www.googleapis.com/auth/cloud-platform
  • https://www.googleapis.com/auth/cloud-platform.read-only
  • https://www.googleapis.com/auth/firebase
  • https://www.googleapis.com/auth/firebase.readonly

詳情請參閱驗證總覽一文。