Method: edits.tracks.list
HTTP リクエスト
GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/edits/{editId}/tracks
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
packageName |
string
アプリのパッケージ名。
|
editId |
string
編集の識別子。
|
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
すべてのトラックをリストするレスポンス。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{
"kind": string,
"tracks": [
{
object (Track )
}
]
} |
フィールド |
kind |
string
このレスポンスの種類(「androidpublisher#tracksListResponse」)。
|
tracks[] |
object (Track )
すべてのトラック(リリースなしのトラックを含む)。
|
認可スコープ
次の 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。"],[[["Lists all tracks, including those without releases, for a specific app and edit using an HTTP GET request."],["Requires providing the package name and edit ID as path parameters in the request URL."],["The request body should be empty, and the response will contain a JSON object listing all tracks."],["Authorization is necessary using the `https://www.googleapis.com/auth/androidpublisher` OAuth scope."]]],["This document outlines the process of listing all tracks for an Android app using the Android Publisher API. It involves a `GET` HTTP request to a specified URL, including `packageName` and `editId` as path parameters. The request body must be empty. A successful response returns a JSON object containing a `kind` field and an array of `tracks`, detailing all tracks associated with the app, requiring `androidpublisher` authorization scope.\n"]]