Wir aktualisieren die Data API, damit sie der Zählweise von YouTube-Aufrufen für Kurzvideos entspricht.
Weitere Informationen
PlaylistImages
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Eine playlistImage
-Ressource identifiziert
das einer Playlist zugeordnete Thumbnail-Bild.
Ressourcendarstellung
Die folgende JSON-Struktur zeigt das Format einer playlistImages
-Ressource:
{
"kind": "youtube#playlistImage",
"id": string,
"snippet": {
"playlistId": string,
"type": string,
"width": string,
"height": string,
}
}
Attribute
In der folgenden Tabelle werden die Attribute definiert, die in dieser Ressource angezeigt werden:
Attribute |
kind |
string
Identifiziert den Typ der API-Ressource. Der Wert ist youtube#playlistImage . |
id |
string
Die ID, die YouTube zur eindeutigen Identifizierung des Playlist-Bildes verwendet. |
snippet |
object
Das snippet -Objekt enthält grundlegende Details über das Playlist-Bild, wie etwa Typ und Abmessungen. |
snippet.playlistId |
string
Die Playlist-ID der Playlist, mit der dieses Bild verknüpft ist. |
snippet.type |
string
Der Bildtyp.
|
snippet.width |
string
Die Breite des Bilds. |
snippet.height |
string
Die Höhe der Bilder. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-08-16 (UTC).
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-08-16 (UTC)."],[[["A playlistImage resource in the YouTube API represents the thumbnail image associated with a specific playlist."],["The API provides methods to list, insert, update, and delete playlist images, allowing for comprehensive management of playlist thumbnails."],["The `playlistImages` resource contains properties such as `kind`, `id`, and `snippet`, with the `snippet` object detailing the associated playlist's ID, image type, width, and height."],["The API's `playlistImages` resource structure is in JSON format, and the value of `kind` is always `youtube#playlistImage`."]]],["The `playlistImage` resource represents a playlist's thumbnail. The API provides methods to interact with these images: `list` retrieves images, `insert` adds an image, `update` modifies an existing image, and `delete` removes an image. Each `playlistImage` resource contains an `id`, `kind` which will always be `youtube#playlistImage`, and a `snippet` with details like `playlistId`, `type`, `width`, and `height` of the image.\n"]]