Skip to content

case/itunes-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

itunes-node

search against iTunes using nodejs

installation

npm install itunes-search

example

var itunes = require('itunes-search')

// http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html#searching
// options example:
// options = {
//    media: "movie" // options are: podcast, music, musicVideo, audiobook, shortFilm, tvShow, software, ebook, all
//  , entity: "movie"
//  , attribute: "movie"
//  , limit: 50
//  , explicit: "No" // explicit material
// }
var options = {
    media: "movie"
  , entity: "movie"
  , limit: 25
}

itunes.search( "field of dreams", options, function(response) {
  // do stuff with 'response'
})

About

search against iTunes using nodejs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%