Android Developers |
---|
You cannot use this library for Android app development. Have a look at kaaes/spotify-web-api-android and Spotify's Android SDK and see why. |
This is a Java wrapper/client for the Spotify Web API.
The artifact is available through Maven Central via Sonatype.
<dependency>
<groupId>se.michaelthelin.spotify</groupId>
<artifactId>spotify-web-api-java</artifactId>
<version>2.0.0-RC1</version>
</dependency>
compile 'se.michaelthelin.spotify:spotify-web-api-java:2.0.0-RC1'
See this project's Javadoc.
A huge thanks to c-schuhmann for his amazing work on the documentation!
// For all requests an access token is needed
SpotifyApi spotifyApi = new SpotifyApi.Builder()
.setAccessToken("taHZ2SdB-bPA3FsK3D7ZN5npZS47cMy-IEySVEGttOhXmqaVAIo0ESvTCLjLBifhHOHOIuhFUKPW1WMDP7w6dj3MAZdWT8CLI2MkZaXbYLTeoDvXesf2eeiLYPBGdx8tIwQJKgV8XdnzH_DONk")
.build();
// Create a request object with the optional parameter "market"
final GetSomethingRequest getSomethingRequest = spotifyApi.getSomething("qKRpDADUKrFeKhFHDMdfcu")
.market(CountryCode.SE)
.build();
void getSomething_Sync() {
try {
// Execute the request synchronous
final Something something = getSomethingRequest.execute();
// Print something's name
System.out.println("Name: " + something.getName());
} catch (Exception e) {
System.out.println("Something went wrong!\n" + e.getMessage());
}
}
void getSomething_Async() {
try {
// Execute the request asynchronous
final Future<Something> somethingFuture = getSomethingRequest.executeAsync();
// Do other things...
// Wait for the request to complete
final Something something = somethingFuture.get();
// Print something's name
System.out.println("Name: " + something.getName());
} catch (Exception e) {
System.out.println("Something went wrong!\n" + e.getMessage());
}
}
For authorization requests the API object requires at least to have your application's client ID and client secret set as its properties. When using the authorization code flow, the application's redirect URI is required too. Those properties will then be automatically used by functions that depend on them.
SpotifyApi spotifyApi = new SpotifyApi.Builder()
.setClientId("<your_client_id>")
.setClientSecret("<your_client_secret>")
.setRedirectUri("<your_redirect_uri>")
.build();
There are two ways to retrieving an access token:
Use the client credentials flow when the requests don't require permission from a specific user. This flow doesn't return a refresh token and is useful for simple requests, like fetching albums or searching for tracks.
Example: ClientCredentialsExample.java
Using the authorization code flow to retrieve an access token is necessary if the requests are bound to a specific user. Using this flow returns a refresh token, which can be used to renew the access token before it expires. This is how it works:
-
The authorization code flow requires a code, which is part of the
redirectUri
's query parameters when the user has opened a custom URL in a browser and authorized the application.Example: AuthorizationCodeUriExample.java
-
When the code has been retrieved, it can be used in another request to get an access token as well as a refresh token.
Example: AuthorizationCodeExample.java
-
Now, the refresh token in turn can be used in a loop to retrieve new access and refresh tokens.
Example: AuthorizationCodeRefreshExample.java
When you've fetched an access and refresh token, you have to add them to your API properties for automatic usage in requests. The implementer has to handle the access token's expiration.
spotifyApi
.setAccessToken("<your_access_token>")
.setRefreshToken("<your_refresh_token>")
.build();
-
Albums
-
Artists
-
Browse
-
Follow
-
Library
-
Personalization
-
Player
- Get a User's Available Devices
- Get Information About The User's Current Playback
- Get Current User's Recently Played Tracks
- Get the User's Currently Playing Track
- Pause a User's Playback
- Seek To Position In Currently Playing Track
- Set Repeat Mode On User's Playback
- Set Volume For User's Playback
- Skip User's Playback To Next Track
- Skip User's Playback To Previous Track
- Start/Resume a User's Playback
- Toggle Shuffle For User's Playback
- Transfer a User's Playback
-
Playlists
- Add Tracks to a Playlist
- Change a Playlist's Details
- Create a Playlist
- Get a List of Current User's Playlists
- Get a List of a User's Playlists
- Get a Playlist
- Get a Playlist Cover Image
- Get a Playlist's Tracks
- Remove Tracks from a Playlist
- Reorder a Playlist's Tracks
- Replace a Playlist's Tracks
- Upload a Custom Playlist Cover Image
-
Search
-
Tracks
-
User's Profile
See CONTRIBUTING.md.
- Build:
mvn clean install
- Test:
mvn clean test
Requirements: Java, Maven.
This project's main Java package is divided into four sections:
- enumerations
- exceptions
- model objects
- requests.
Those unit-tested parts are connected through various classes that make the API accessible for other Java projects. You can find details about specific parts or single classes in the sections below.
src/main/java/com.wrapper.spotify/enums/
Enumerations allow elements to "be of a type" and limit them to a known value set. They are currently not specified in a unique place, but are rather scrambled across the online reference. Thus, the reference only allows for construction of enum classes from this sparse information.
src/main/java/com.wrapper.spotify/exceptions/
Exceptions are thrown when errors occur. They are following RFC-specified HTTP status codes and are packed with a more detailed error description.
src/main/java/com.wrapper.spotify/model_objects/
The model objects are entities that form the API's responses in arranged formats. They are mostly specified in the Web API Object Model and in the Web API Authorization Guide. Though, unreferenced model objects exist. This project subdivides those into...
- "miscellaneous" model objects: these are mentioned somewhere in the reference, but not in the model object list
- "special" model objects: these are not mentioned at all, but appear in API answers nonetheless.
Java classes representing those model objects include private instance variables, a private constructor, but public getter methods as well as an embedded...
- builder class, including the setter functions and a public build method
- JSON-util class, implementing the
createModelObject
method.
src/main/java/com.wrapper.spotify/requests/
The request classes mirror the strucure of Spotify's Web Api endpoints. They are divided into several categories like
authorization
, data/albums
or data/tracks
. They must extend from AbstractDataRequest
and contain an
implementation of the request's execute
method. They have to embed a builder class too, enabling dynamic request
creation.
src/test/java/com.wrapper.spotify/
Unit tests ensure that implemented features work. This project's unit tests are implemented with JUnit and mockito for mocking.
src/test/fixtures/
Fixtures are JSON files that represent the data returned from the API server. We use the examples directly provided by the Web API Endpoint Reference with minor tweaks. Tweaks are needed because the reference sometimes contains invalid data examples.