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 pathGetUsersProfileExample.java
More file actions
Latest commit
55 lines (44 loc) · 1.98 KB
/
Copy pathGetUsersProfileExample.java
File metadata and controls
55 lines (44 loc) · 1.98 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.users_profile;
importse.michaelthelin.spotify.SpotifyApi;
importse.michaelthelin.spotify.exceptions.SpotifyWebApiException;
importse.michaelthelin.spotify.model_objects.specification.User;
importse.michaelthelin.spotify.requests.data.users_profile.GetUsersProfileRequest;
importorg.apache.hc.core5.http.ParseException;
importjava.io.IOException;
importjava.util.concurrent.CancellationException;
importjava.util.concurrent.CompletableFuture;
importjava.util.concurrent.CompletionException;
publicclassGetUsersProfileExample {
privatestaticfinalStringaccessToken = "taHZ2SdB-bPA3FsK3D7ZN5npZS47cMy-IEySVEGttOhXmqaVAIo0ESvTCLjLBifhHOHOIuhFUKPW1WMDP7w6dj3MAZdWT8CLI2MkZaXbYLTeoDvXesf2eeiLYPBGdx8tIwQJKgV8XdnzH_DONk";
privatestaticfinalStringuserId = "user_id";
privatestaticfinalSpotifyApispotifyApi = newSpotifyApi.Builder()
.setAccessToken(accessToken)
.build();
privatestaticfinalGetUsersProfileRequestgetUsersProfileRequest = spotifyApi.getUsersProfile(userId)
.build();
publicstaticvoidgetUsersProfile_Sync() {
try {
finalUseruser = getUsersProfileRequest.execute();
System.out.println("Display name: " + user.getDisplayName());
} catch (IOException | SpotifyWebApiException | ParseExceptione) {
System.out.println("Error: " + e.getMessage());
}
}
publicstaticvoidgetUsersProfile_Async() {
try {
finalCompletableFuture<User> userFuture = getUsersProfileRequest.executeAsync();
// Thread free to do other tasks...
// Example Only. Never block in production code.
finalUseruser = userFuture.join();
System.out.println("Display name: " + user.getDisplayName());
} catch (CompletionExceptione) {
System.out.println("Error: " + e.getCause().getMessage());
} catch (CancellationExceptione) {
System.out.println("Async operation cancelled.");
}
}
publicstaticvoidmain(String[] args) {
getUsersProfile_Sync();
getUsersProfile_Async();
}
}