Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

amazon-book-search-se-openshift

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amazon-book-search-se-openshift

Simple wrapper around apac to return book results from Amazon's Product Advertising API. Based on amazon-book-search by kuryaki. Uses apac version 0.0.13 so it can work with openshift's version of node.js

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Amazon Book Search SE OpenShift

This allows you to find books on amazon through their Product Advertising API. It is a simplified version of amazon-book-search (does not provide express middleware interface). This version does not humanize the results and returns them in original Amazon format. Works well searching by ISBN as well as keywords. It uses an older version of apac so that it supports the openshift node.js version. Because of this it does not automatically throttle, so you will have to do that manually (if required).

Install

 $ npm install amazon-book-search-se-openshift

Requirements

You will need an Amazon API key, secret and associate ID to use this service. For more information,
look at the Amazon Product Advertising API documentation.

Usage

var amazonBookSearchSEOpenShift = require('amazon-book-search-se-openshift');
var absse =  new amazonBookSearchSEOpenShift({ awsKey: "YOUR KEY", awsSecret: "YOUR SECRET", assocId: "YOUR ASSOCIATE TAG" });

// search by ISBN
absse.search('9781413027570', function(error, result){
    if(error){
        console.log(error);
    } else {
        console.log(result);
    }
});

// search by title - first page of 10 results
absse.search('catcher in the rye', function(error, result){
    if(error){
        console.log(error);
    } else {
        console.log(result);
    }
}, 1);

// search by title - second page of 10 results
absse.search('catcher in the rye', function(error, result){
    if(error){
        console.log(error);
    } else {
        console.log(result);
    }
}, 2);

There is a maximum of 10 pages returned by Amazon so only 100 products will be displayed.

Keywords

FAQs

Package last updated on 13 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc