#ebay
Ebay client for node. Make calls to Ebay's http API's.
#Installing
npm install ebay
#Usage
var Ebay = require('ebay')
var ebay = new Ebay({
app_id: '...'
})
var params = {
'OPERATION-NAME': 'findItemsByKeywords'
, 'keywords': 'shoes'
}
ebay.get('finding', params, function (err, data) {
if(err) throw err
console.log(data)
})
##Methods
There are just 2 methods; get
and post
which make GET and POST requests to Ebay.
ebay.get(service, [params], callback)
ebay.post(service, [params], callback)
##Arguments
Note: Most API calls have required params (e.g. OPERATION-NAME
). Check the Ebay API docs for more info.
callback
: function (err, data)
the callback to be invoked on reply.