1.2.1 • Published 8 years ago

anesidora v1.2.1

Weekly downloads
139
License
MIT
Repository
github
Last release
8 years ago

Anesidora

Build Status npm

A really simple wrapper around the Pandora JSON API.

Installation

npm install --save anesidora

Usage

var Anesidora = require("anesidora");

var pandora = new Anesidora("email", "password");

pandora.login(function(err) {
    if (err) throw err;
    pandora.request("user.getStationList", function(err, stationList) {
        if (err) throw err;
        var station = stationList.stations[0];
        pandora.request("station.getPlaylist", {
            "stationToken": station.stationToken,
            "additionalAudioUrl": "HTTP_128_MP3"
        }, function(err, playlist) {
            if (err) throw err;
            var track = playlist.items[0];
            console.log("Playing '" + track.songName + "' by " + track.artistName);
            console.log(track.additionalAudioUrl);
        });
    });
});

Documentation

See here for API documentation. Authentication, encryption, and TLS are all handled automatically. All you need is an email and a password, and you're good to go.

Handy links:

var pandora = new Anesidora(email, password, [config])

Create a new Anesidora instance for making requests. No authentication is done until pandora.login is called.

config

(Optional) A custom partner config.

pandora.login(callback)

Authenticate with Pandora.

callback - function(err)

Do all requests inside this callback.

pandora.request(method, [data], callback)

Make a Pandora API call.

method

A Pandora API call method, such as station.getPlaylist.

data

(Optional) Data for the API call, if necessary.

callback - function(err, result)

  • result is the value returned from Pandora. Refer to the individual method docs for more information.
1.2.1

8 years ago

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.1

9 years ago