Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy pathGetPlaylistCoverImageExample.java
More file actions
Latest commit
56 lines (45 loc) · 2.06 KB
/
Copy pathGetPlaylistCoverImageExample.java
File metadata and controls
56 lines (45 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
packagedata.playlists;
importse.michaelthelin.spotify.SpotifyApi;
importse.michaelthelin.spotify.exceptions.SpotifyWebApiException;
importse.michaelthelin.spotify.model_objects.specification.Image;
importse.michaelthelin.spotify.requests.data.playlists.GetPlaylistCoverImageRequest;
importorg.apache.hc.core5.http.ParseException;
importjava.io.IOException;
importjava.util.concurrent.CancellationException;
importjava.util.concurrent.CompletableFuture;
importjava.util.concurrent.CompletionException;
publicclassGetPlaylistCoverImageExample {
privatestaticfinalStringaccessToken = "taHZ2SdB-bPA3FsK3D7ZN5npZS47cMy-IEySVEGttOhXmqaVAIo0ESvTCLjLBifhHOHOIuhFUKPW1WMDP7w6dj3MAZdWT8CLI2MkZaXbYLTeoDvXesf2eeiLYPBGdx8tIwQJKgV8XdnzH_DONk";
privatestaticfinalStringplaylistId = "3AGOiaoRXMSjswCLtuNqv5";
privatestaticfinalSpotifyApispotifyApi = newSpotifyApi.Builder()
.setAccessToken(accessToken)
.build();
privatestaticfinalGetPlaylistCoverImageRequestgetPlaylistCoverImageRequest = spotifyApi
.getPlaylistCoverImage(playlistId)
.build();
publicstaticvoidgetPlaylistCoverImage_Sync() {
try {
finalImage[] images = getPlaylistCoverImageRequest.execute();
System.out.println("Length: " + images.length);
} catch (IOException | SpotifyWebApiException | ParseExceptione) {
System.out.println("Error: " + e.getMessage());
}
}
publicstaticvoidgetPlaylistCoverImage_Async() {
try {
finalCompletableFuture<Image[]> imagesFuture = getPlaylistCoverImageRequest.executeAsync();
// Thread free to do other tasks...
// Example Only. Never block in production code.
finalImage[] images = imagesFuture.join();
System.out.println("Length: " + images.length);
} catch (CompletionExceptione) {
System.out.println("Error: " + e.getCause().getMessage());
} catch (CancellationExceptione) {
System.out.println("Async operation cancelled.");
}
}
publicstaticvoidmain(String[] args) {
getPlaylistCoverImage_Sync();
getPlaylistCoverImage_Async();
}
}