An open API service indexing awesome lists of open source software.

https://github.com/nodejh/top-api-node-sdk

Taobao TOP API Node.js SDK
https://github.com/nodejh/top-api-node-sdk

Last synced: about 1 year ago
JSON representation

Taobao TOP API Node.js SDK

Awesome Lists containing this project

README

          

## TaoBao TOP API Node.js SDK

### install

```sh
$ npm install top-api-sdk --save
```

### usage

```js
import { RestClient } from 'top-api-sdk';

const client = new RestClient({
appKey: process.env.TOP_APP_KEY || '',
secretKey: process.env.TOP_SECRET_KEY || '',
api: '',
});

const response = await client.invoke('method', params);
```