We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef9e63 commit d59529eCopy full SHA for d59529e
samples/src/main/kotlin/public/AlbumApiSample.kt
@@ -13,5 +13,10 @@ fun main() {
13
// get album "Kids in Love" by the Mowgli's release date
14
println(api.albums.getAlbum("spotify:album:4M2p2BIRHIeBu8Ew9IBQ0s").complete()!!.releaseDate)
15
16
- //
+ // get album "Kids in Love" and a non-existant album
17
+ println(api.albums.getAlbums("spotify:album:4M2p2BIRHIeBu8Ew9IBQ0s", "nonexistantalbum"))
18
+
19
+ // get album "Kids in Love"'s tracks
20
+ println(api.albums.getAlbumTracks("spotify:album:4M2p2BIRHIeBu8Ew9IBQ0s").complete().map { it.name })
21
22
}
0 commit comments