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 pathGetUsersAvailableDevicesExample.java
More file actions
Latest commit
55 lines (44 loc) · 2.02 KB
/
Copy pathGetUsersAvailableDevicesExample.java
File metadata and controls
55 lines (44 loc) · 2.02 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
packagedata.player;
importse.michaelthelin.spotify.SpotifyApi;
importse.michaelthelin.spotify.exceptions.SpotifyWebApiException;
importse.michaelthelin.spotify.model_objects.miscellaneous.Device;
importse.michaelthelin.spotify.requests.data.player.GetUsersAvailableDevicesRequest;
importorg.apache.hc.core5.http.ParseException;
importjava.io.IOException;
importjava.util.concurrent.CancellationException;
importjava.util.concurrent.CompletableFuture;
importjava.util.concurrent.CompletionException;
publicclassGetUsersAvailableDevicesExample {
privatestaticfinalStringaccessToken = "taHZ2SdB-bPA3FsK3D7ZN5npZS47cMy-IEySVEGttOhXmqaVAIo0ESvTCLjLBifhHOHOIuhFUKPW1WMDP7w6dj3MAZdWT8CLI2MkZaXbYLTeoDvXesf2eeiLYPBGdx8tIwQJKgV8XdnzH_DONk";
privatestaticfinalSpotifyApispotifyApi = newSpotifyApi.Builder()
.setAccessToken(accessToken)
.build();
privatestaticfinalGetUsersAvailableDevicesRequestgetUsersAvailableDevicesRequest = spotifyApi
.getUsersAvailableDevices()
.build();
publicstaticvoidgetUsersAvailableDevices_Sync() {
try {
finalDevice[] devices = getUsersAvailableDevicesRequest.execute();
System.out.println("Length: " + devices.length);
} catch (IOException | SpotifyWebApiException | ParseExceptione) {
System.out.println("Error: " + e.getMessage());
}
}
publicstaticvoidgetUsersAvailableDevices_Async() {
try {
finalCompletableFuture<Device[]> devicesFuture = getUsersAvailableDevicesRequest.executeAsync();
// Thread free to do other tasks...
// Example Only. Never block in production code.
finalDevice[] devices = devicesFuture.join();
System.out.println("Length: " + devices.length);
} catch (CompletionExceptione) {
System.out.println("Error: " + e.getCause().getMessage());
} catch (CancellationExceptione) {
System.out.println("Async operation cancelled.");
}
}
publicstaticvoidmain(String[] args) {
getUsersAvailableDevices_Sync();
getUsersAvailableDevices_Async();
}
}