AchievementConfigurations: list
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
需要授權
傳回此應用程式中的成就設定清單。
要求
HTTP 要求
GET https://www.googleapis.com/games/v1configuration/applications/applicationId/achievements
參數
參數名稱 |
值 |
說明 |
路徑參數 |
applicationId |
string |
Google Play 管理中心的應用程式 ID。
|
選用的查詢參數 |
maxResults |
integer |
回應中要傳回的資源設定數量上限,用於分頁。針對任何回應,傳回的實際資源數量可能少於指定的 maxResults 。
可接受的值為 1 到 200 (含頭尾)。
|
pageToken |
string |
先前要求傳回的權杖。
|
授權
此要求需要獲得下列範圍的授權 (進一步瞭解驗證和授權)。
範圍 |
https://www.googleapis.com/auth/androidpublisher |
要求主體
請勿使用這個方法提供請求主體。
回應
如果成功的話,這個方法會傳回回應內文,其結構如下:
{
"kind": "gamesConfiguration#achievementConfigurationListResponse",
"nextPageToken": string,
"items": [
achievementConfigurations Resource
]
}
屬性名稱 |
值 |
說明 |
附註 |
kind |
string |
專門用於識別這項資源的類型。值一律為固定字串 games#achievementConfigurationListResponse 。 |
|
nextPageToken |
string |
下一頁結果的分頁符記。 |
|
items[] |
list |
成就設定。 |
|
這個頁面中的內容和程式碼範例均受《內容授權》中的授權所規範。Java 與 OpenJDK 是 Oracle 和/或其關係企業的商標或註冊商標。
上次更新時間:2025-07-27 (世界標準時間)。
[[["容易理解","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-27 (世界標準時間)。"],[],[],null,["# AchievementConfigurations: list\n\n**Requires [authorization](#auth)**\n\nReturns a list of the achievement configurations in this application.\n\nRequest\n-------\n\n### HTTP request\n\n```\nGET https://www.googleapis.com/games/v1configuration/applications/applicationId/achievements\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#achievementConfigurationListResponse\",\n \"nextPageToken\": string,\n \"items\": [\n achievementConfigurations 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#achievementConfigurationListResponse`. | |\n| `nextPageToken` | `string` | The pagination token for the next page of results. | |\n| `items[]` | `list` | The achievement configurations. | |"]]