Elixir Wrapper for the Spotify Web API
This is no longer under development, though I'm happy to merge bug fixes and reasonable feature additions. Please ask before adding new features so you don't waste your time.
- Add spotify_ex to your list of dependencies in
mix.exs
:
def deps do
[{:spotify_ex, "~> 2.3.0"}]
end
- Ensure spotify_ex is started before your application:
def application do
[applications: [:spotify_ex]]
end
This wrapper covers the Spotify Web API.
Follow the abovementioned link. On the left you'll notice that the API is broken into sections, such as Artists, Albums, Playlists, etc. This wrapper does its best to keep endpoints in modules mapped to their corresponding section. However, Spotify duplicates many of its endpoints. For example, there is an endpoint to obtain an artist's albums that is listed under both Artists and Albums.
Endpoints are not duplicated here, however. If you don't see an endpoint, it can be found in a
module that's also related to that endpoint. In other words, if you don't see an endpoint for "get artists albums"
in the Artist
module, check Albums
.
These duplicate endpoints may get aliased in the future to have a 1-1 mapping with the docs.
A basic Phoenix example can be found at SpotifyExTest
All contributions are more than welcome! I will not accept a PR without tests
if it looks like something that should be tested (which is pretty much
everything.) Development is done on the development
branch, and moved to
master
for release on hexpm. Code must be formatted using hex format
.