Go to file
2016-04-17 11:33:38 +02:00
.idea Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
bin Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
public Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
.gitignore Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
app.js Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
app.json Add app.json 2016-04-17 11:33:38 +02:00
package.json Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
Procfile Build a Spotify duplicate finder 2016-04-17 11:21:26 +02:00
README.md Update README.md 2014-07-07 11:49:23 +02:00

Spotify Accounts Authentication Examples

This project contains basic demos showing the different OAuth 2.0 flows for authenticating against the Spotify Web API.

These examples cover:

  • Authorization Code flow
  • Client Credentials flow
  • Implicit Grant flow

Installation

These examples run on Node.js. On its website you can find instructions on how to install it. You can also follow this gist for a quick and easy way to install Node.js and npm.

Once installed, clone the repository and install its dependencies running:

$ npm install

Running the examples

In order to run the different examples, open the folder with the name of the flow you want to try out, and run its app.js file. For instance, to run the Authorization Code example do:

$ cd authorization_code
$ node app.js

Then, open http://localhost:8888 in a browser.

Using your own credentials

The examples contains a working client ID and secret key. Note, however, that they might be rate limited if they are used frequently. If you are planning to create an application, we recommend you register your app and get your own credentials instead of using the ones in this project.

Go to My Applications on Spotify Developer and create your application. For the examples, we registered these Redirect URIs:

Once you have created your app, replace the client_id, redirect_uri and client_secret in the examples with the ones you get from My Applications.