Method: applications.deviceTierConfigs.list
コレクションでコンテンツを整理 必要に応じて、コンテンツの保存と分類を行います。
作成されたデバイス階層設定を、作成時間の降順で並べ替えて返します。
HTTP リクエスト
GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/deviceTierConfigs
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
packageName | string アプリのパッケージ名。 |
クエリ パラメータ
パラメータ |
pageSize | integer 返されるデバイス階層設定の最大数。サービスが返す値はこれよりも少ないことがあります。指定されていない場合は、最大で 10 個のデバイス階層設定が返されます。このフィールドの最大値は 100 です。100 を超える値は 100 に強制変換されます。デバイス階層設定は、作成時間の降順で並べ替えられます。 |
pageToken | string 前回の deviceTierConfigs.list 呼び出しから受け取ったページトークン。後続のページを取得するにはこれを指定します。 |
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
既存のデバイス階層設定を一覧表示するレスポンス。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{ "deviceTierConfigs": [ { object (DeviceTierConfig ) } ], "nextPageToken": string } |
フィールド |
deviceTierConfigs[] | object (DeviceTierConfig ) デベロッパーが作成したデバイス階層設定。 |
nextPageToken | string 次のページを取得するために pageToken として送信できるトークン。このフィールドを省略すると、後続のページはなくなります。 |
認可スコープ
次の OAuth スコープが必要です。
https://www.googleapis.com/auth/androidpublisher
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[[["Returns a list of device tier configs for a specified Android app, ordered by descending creation time."],["Allows for pagination to retrieve large lists of device tier configs."],["Requires authorization with the `https://www.googleapis.com/auth/androidpublisher` scope."],["Request body should be empty, and the response includes a list of device tier configs and a token for pagination."]]],["This API retrieves a list of device tier configurations for a specified Android app. It uses a `GET` request to a URL with the app's package name as a path parameter. Optional query parameters `pageSize` (up to 100) and `pageToken` facilitate pagination. The request body is empty. The response, ordered by creation time, is a JSON object containing an array of `deviceTierConfigs` and a `nextPageToken` for further pages. It needs `androidpublisher` authorization scope.\n"]]