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 pathGetTrackExample.java
More file actions
Latest commit
56 lines (45 loc) · 1.92 KB
/
Copy pathGetTrackExample.java
File metadata and controls
56 lines (45 loc) · 1.92 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.tracks;
importse.michaelthelin.spotify.SpotifyApi;
importse.michaelthelin.spotify.exceptions.SpotifyWebApiException;
importse.michaelthelin.spotify.model_objects.specification.Track;
importse.michaelthelin.spotify.requests.data.tracks.GetTrackRequest;
importorg.apache.hc.core5.http.ParseException;
importjava.io.IOException;
importjava.util.concurrent.CancellationException;
importjava.util.concurrent.CompletableFuture;
importjava.util.concurrent.CompletionException;
publicclassGetTrackExample {
privatestaticfinalStringaccessToken = "taHZ2SdB-bPA3FsK3D7ZN5npZS47cMy-IEySVEGttOhXmqaVAIo0ESvTCLjLBifhHOHOIuhFUKPW1WMDP7w6dj3MAZdWT8CLI2MkZaXbYLTeoDvXesf2eeiLYPBGdx8tIwQJKgV8XdnzH_DONk";
privatestaticfinalStringid = "01iyCAUm8EvOFqVWYJ3dVX";
privatestaticfinalSpotifyApispotifyApi = newSpotifyApi.Builder()
.setAccessToken(accessToken)
.build();
privatestaticfinalGetTrackRequestgetTrackRequest = spotifyApi.getTrack(id)
// .market(CountryCode.SE)
.build();
publicstaticvoidgetTrack_Sync() {
try {
finalTracktrack = getTrackRequest.execute();
System.out.println("Name: " + track.getName());
} catch (IOException | SpotifyWebApiException | ParseExceptione) {
System.out.println("Error: " + e.getMessage());
}
}
publicstaticvoidgetTrack_Async() {
try {
finalCompletableFuture<Track> trackFuture = getTrackRequest.executeAsync();
// Thread free to do other tasks...
// Example Only. Never block in production code.
finalTracktrack = trackFuture.join();
System.out.println("Name: " + track.getName());
} catch (CompletionExceptione) {
System.out.println("Error: " + e.getCause().getMessage());
} catch (CancellationExceptione) {
System.out.println("Async operation cancelled.");
}
}
publicstaticvoidmain(String[] args) {
getTrack_Sync();
getTrack_Async();
}
}