LeaderboardConfigurations: list
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
認証が必要です
このアプリケーションのリーダーボード構成のリストを返します。
リクエスト
HTTP リクエスト
GET https://www.googleapis.com/games/v1configuration/applications/applicationId/leaderboards
パラメータ
パラメータ名 |
値 |
説明 |
パスパラメータ |
applicationId |
string |
Google Play Console のアプリケーション ID。
|
省略可能なクエリ パラメータ |
maxResults |
integer |
レスポンスで返されるリソース構成の最大数。ページングに使用されます。レスポンスごとに、返されるリソースの実際の数は、指定された maxResults よりも少なくなる場合があります。有効な値は 1 以上 200 以下です。
|
pageToken |
string |
前のリクエストで返されたトークン。 |
承認
このリクエストには、次のスコープによる認証が必要です(認証と承認の詳細をご確認ください)。
範囲 |
https://www.googleapis.com/auth/androidpublisher |
リクエストの本文
このメソッドでは、リクエストの本文を指定しません。
回答
成功すると、このメソッドは次の構造を持つレスポンスの本文を返します。
{
"kind": "gamesConfiguration#leaderboardConfigurationListResponse",
"nextPageToken": string,
"items": [
leaderboardConfigurations Resource
]
}
プロパティ名 |
値 |
説明 |
備考 |
kind |
string |
このリソースのタイプを一意に識別します。値は常に固定文字列 games#leaderboardConfigurationListResponse です。 |
|
nextPageToken |
string |
次のページの結果のページ設定トークン。 |
|
items[] |
list |
リーダーボードの設定。 |
|
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[],[],null,["# LeaderboardConfigurations: list\n\n**Requires [authorization](#auth)**\n\nReturns a list of the leaderboard configurations in this application.\n\nRequest\n-------\n\n### HTTP request\n\n```\nGET https://www.googleapis.com/games/v1configuration/applications/applicationId/leaderboards\n```\n\n### Parameters\n\n| Parameter name | Value | Description |\n|-----------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| **Path parameters** |||\n| `applicationId` | `string` | The application ID from the Google Play Console. |\n| **Optional query parameters** |||\n| `maxResults` | `integer` | The maximum number of resource configurations to return in the response, used for paging. For any response, the actual number of resources returned may be less than the specified `maxResults`. Acceptable values are `1` to `200`, inclusive. |\n| `pageToken` | `string` | The token returned by the previous request. |\n\n### Authorization\n\nThis request requires authorization with the following scope ([read more about authentication and authorization](/accounts/docs/OAuth2)).\n\n| Scope |\n|----------------------------------------------------|\n| `https://www.googleapis.com/auth/androidpublisher` |\n\n### Request body\n\nDo not supply a request body with this method.\n\nResponse\n--------\n\nIf successful, this method returns a response body with the following structure:\n\n```objective-c\n{\n \"kind\": \"gamesConfiguration#leaderboardConfigurationListResponse\",\n \"nextPageToken\": string,\n \"items\": [\n leaderboardConfigurations Resource\n ]\n}\n```\n\n| Property name | Value | Description | Notes |\n|-----------------|----------|-------------------------------------------------------------------------------------------------------------------------------|-------|\n| `kind` | `string` | Uniquely identifies the type of this resource. Value is always the fixed string `games#leaderboardConfigurationListResponse`. | |\n| `nextPageToken` | `string` | The pagination token for the next page of results. | |\n| `items[]` | `list` | The leaderboard configurations. | |"]]