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 および関連会社の登録商標です。
最終更新日 2024-12-17 UTC。
[null,null,["最終更新日 2024-12-17 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"]]