npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ebay-api-reborn

v1.0.4

Published

An updated version of ebay-api module that includes oauth for eBay sShopping and Trading API. Now supports TLS1.2

Downloads

6

Readme

eBay API client for Node.js

Build Status

Updated in 2021 by Jon Tranter, to add token validation that is required by Shopping and Finding API's as of September 21

A huge thank you to Ben Buckman who performed a huge amount of work on this module. Without his efforts this package wouldn't exist. Several other people have contributed to the module

Intro

This module aims to support all of eBay's old APIs (Trading, Shopping, Finding, Merchandising, etc), with an interface that is both a) somewhat consistent across APIs and b) not too different from the underlying interface.

The old eBay APIs are primarily XML-based, so this module unfortunately has to do a lot of JSON<->XML conversion.

It nows support Oauth that is required by Shopping and Finding API's as of September 21

Current state

The 1.x branch is currently under active development, and there may be breaking changes between minor releases.
(I realize this is contrary to best practice, but the module is not yet settled enough to major-bump every time.)

If you are using the 1.x branch, I recommend that you a) let me know your use case, b) help develop it, c) watch the commit and release logs carefully.

Usage

npm install ebay-api-reborn

var ebay = require('ebay-api-reborn');

(See the examples)

A eBay APIs

http://developer.ebay.com

Sign up for an API key here: https://publisher.ebaypartnernetwork.com/PublisherToolsAPI

(You'll need a key to run the examples.)

And please make sure to follow the liscence terms: eBay API License and Terms when using this library.

Methods

xmlRequest(options, callback)

Makes an XML POST to an eBay API endpoints.

options must contain:

  • serviceName: e.g. 'Finding'
  • opType: e.g. 'findItemsAdvanced'
  • appId: your eBay API application ID

and can optionally contain:

  • params: (see examples and API documentation)
  • reqOptions: passed to the request module, e.g. for additional headers, or timeout.
  • xmlConverter: function which takes the response XML and converts to JSON. Module uses xml2js by default, but can be overridden.
  • parser: function which takes the response data (as JSON object) and extracts items (or other units depending on the query). Module includes a default parser.
  • sandbox: boolean (default false = production). May need to add additional endpoint URLs to the code as needed.
  • raw: boolean, set true to skip parsing and return the raw XML response.
  • parseDepth: how many levels down to try to parse/interpret the response. The default parser is still experimental. Set this to 0 or 1 to let your app do all the parsing. (Default: unlimited)

for authentication, include:

  • devId
  • certId
  • authToken

callback gets (error, data).

Helpers

flatten(obj)

Simplifies the JSON format of the API responses:

  • Single-element arrays and objects are flatted to their key:value pair.
  • The structure of the format { @key:KEY, __value__:VALUE } is flattened to its key:value pair.
  • Other weird structures (from the API itself, or the XML->JSON conversion) are simplified. (See the code for details.)

Its purpose is to make the data easier to handle in code, and to model/query in MongoDB.

Runs synchronously, returns flattened object.

The default parser will flatten() the response to a finite depth (because infinite recursion on an indeterminate response size would cause an unnecessary performance hit).
If you want to flatten further, use this method directly.

parseResponseJson(data, options, callback)

The default parser. Can be overridden (see options on xmlRequest()).

convertXmlToJson(xmlBody, options, callback)

The default XML->JS converter. Uses xml2js. Can be overridden (see options on xmlRequest()).

getLatestApiVersions(callback)

Disabled in 1.x. Please submit a PR with a fix/refactor if you use this.

Get the version numbers of the APIs that make their version available.

Errors

The client exports and attempts to differentiate between EbaySystemError, EbayRequestError, and EbayClientError.

An EbayAuthenticationError is also defined, but not yet hooked up to anything.

See http://developer.ebay.com/DevZone/Shopping/docs/CallRef/types/ErrorClassificationCodeType.html and http://developer.ebay.com/devzone/xml/docs/Reference/ebay/Errors/ErrorMessages.htm.

Examples

See the examples directory. To run the examples, you need to add your own app key (I don't want my keys to be disabled for abuse!) - you can get one here.

Debugging

This module uses the debug module for internal logging.

Run your app (or node REPL) with DEBUG=ebay* ... to see output.