Spotify
This is a Go wrapper for working with Spotify's
Web API.
It aims to support every task listed in the Web API Endpoint Reference,
located here.
By using this library you agree to Spotify's
Developer Terms of Use.
Installation
To install the library, simply
go get github.com/zmb3/spotify
Authentication
Most of the Web API functionality is available without authenticating.
However, authenticated users benefit from increased rate limits.
Features that access a user's private data require authorization.
All functions requiring authorization are explicitly marked as
such in the godoc.
Spotify uses OAuth2 for authentication, which typically requires the user to login
via a web browser. This package includes an Authenticator
type to handle the details for you.
Start by registering your application at the following page:
https://developer.spotify.com/my-applications/.
You'll get a client ID and secret key for your application. An easy way to
provide this data to your application is to set the SPOTIFY_ID and SPOTIFY_SECRET
environment variables. If you choose not to use environment variables, you can
provide this data manually.
auth := spotify.NewAuthenticator(redirectURL, spotify.ScopeUserReadPrivate)
auth.SetAuthInfo(clientID, secretKey)
url := auth.AuthURL(state)
func redirectHandler(w http.ResponseWriter, r *http.Request) {
token, err := auth.Token(state, r)
if err != nil {
http.Error(w, "Couldn't get token", http.StatusNotFound)
return
}
client := auth.NewClient(token)
}
You may find the following resources useful:
-
Spotify's Web API Authorization Guide:
https://developer.spotify.com/web-api/authorization-guide/
-
Go's OAuth2 package:
https://godoc.org/golang.org/x/oauth2/google
Helpful Hints
Default Client
For API calls that require authorization, you should create your own
spotify.Client
using an Authenticator
. For calls that don't require authorization,
package level wrapper functions are provided (see spotify.Search
for example)
These functions just proxy through spotify.DefaultClient
, similar to the way
the net/http
package works.
Optional Parameters
Many of the functions in this package come in two forms - a simple version that
omits optional parameters and uses reasonable defaults, and a more sophisticated
version that accepts additional parameters. The latter is suffixed with Opt
to indicate that it accepts some optional parameters.
API Examples
Examples of the API can be found in the examples directory.