topsdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.13 • Public • Published

Taobao TOP API Node SDK

Travis CI Build Status NPM Version NPM Downloads Dependency Status

Based on official API definition and written with minimum dependencies.

innopals

Features

  1. Support promise.
  2. Support piping top response to writable stream.
  3. Auto-generated validator for each api stub, and support useValidators options to turn it on/off.
  4. Upload Picture (beta)
  5. Parse large numbers from top api result (gt. Number.MAX_SAFE_INTEGER or lt Number.MIN_SAFE_INTEGER) into strings
  6. TypeScript module definition

Get Started

Default Configurable Options

new TopClient(key, secret, {
  endpoint: 'https://eco.taobao.com/router/rest',
  useValidators: true,
  rawResponse: false
});

Most Common Usage

(async function() {
  const data = await client.execute('taobao.mixnick.get', { nick: 'test' });
  console.log(data.nick);
})();

More...

Pipe To Stream

// const app = express();
app.get((req, res) => {
  client.execute('taobao.mixnick.get', { nick: req.query.nick }).pipe(res);
});

More...

Using Upload API

(async function() {
  const data = await client.execute('taobao.picture.upload', {
    session: session,
    picture_category_id: 0,
    img: fs.createReadStream(path.join(__dirname, 'ok.png')),
    image_input_title: 'ok.png',
    title: 'topsdk test image'
  }, 'FILE_UPLOAD');
  console.log(data);
})();

More...

Contributing

This project welcomes contributions from the community. Contributions are accepted using GitHub pull requests. If you're not familiar with making GitHub pull requests, please refer to the GitHub documentation "Creating a pull request".

/topsdk/

    Package Sidebar

    Install

    npm i topsdk

    Weekly Downloads

    10

    Version

    1.0.13

    License

    MIT

    Unpacked Size

    197 kB

    Total Files

    695

    Last publish

    Collaborators

    • bestmike007