Showing a album cover
问题 I was wondering how to add a album cover on my spotify-app? With this code I can reveal the album title, but how can I show the album cover!? function updatePageWithAlbumName() { var header = document.getElementById("album"); // This will be null if nothing is playing. var playerTrackInfo = sp.trackPlayer.getNowPlayingTrack(); if (playerTrackInfo == null) { header.innerText = "Geen album!"; } else { var track = playerTrackInfo.track; header.innerText = track.album.name; } } 回答1: Please don't