jakemcc / clj-amazon

Clojure wrapper library for Amazon Product Advertising API, based on code from Clojars by eduardoejp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clj-amazon

Clojure wrapper library for Amazon Product Advertising API, forked from code on Clojars by eduardoejp.

Usage

Leiningen 2 has been used with this project.

lein deps

lein repl

And at the REPL...

(use 'clj-amazon.core)

(use 'clj-amazon.product-advertising)

(def ACCESS-KEY "YOUR-ACCESS-KEY-HERE" )

(def SECRET-KEY "YOUR-SECRET-KEY-HERE" )

(def ASSOCIATE-ID "YOUR-ASSOCIATE-ID-HERE")

(def gibson-opus-search (with-signer (ACCESS-KEY, SECRET-KEY) (item-search :search-index "Books", :keywords "Neuromancer", :associate-tag ASSOCIATE-ID, :condition "New")))

Reference

You can find more information about the Amazon Product Advertising API on the following web-pages.

"Getting Started Guide" http://docs.amazonwebservices.com/AWSECommerceService/2011-08-01/GSG/Welcome.html

"Developer Guide" http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html?Welcome.html

License

Distributed under the Eclipse Public License, the same as Clojure.

About

Clojure wrapper library for Amazon Product Advertising API, based on code from Clojars by eduardoejp


Languages

Language:Clojure 100.0%