lazada-open-api-package

1.0.5 • Public • Published

lazada-open-api Logo

Generate "signature", "signature by url" and more for Lazada Open Platform.

NPM Version

I am very happy and grateful for everyone's help. These meaningful contributions will greatly help me in expanding the useful library to help people.

Buy Me A Coffee

Paypal: https://paypal.me/tudinhacoustic

Content

  1. Installation
  2. Features
  3. Community
  4. Generate Signature using Url
  5. Generate Signature
  6. Generate Timestamp
  7. Generate Token using Auth Code
  8. Generate Token using Refresh Token

Installation

Installation is done using the npm install command:

$ npm install lazada-open-api-package

Back

Features

  • Generate Signature using Url
  • Generate Signature
  • Generate Timestamp
  • Generate Token using Auth Code
  • Generate Token using Refresh Token

Back

Community

Back

Generate Signature using Url

const lazadaOpenApi = require('lazada-open-api-package')

// Example Url.
// The package helps remove the "sign", and the "time" has been decoded.
const url = 'https://api.lazada.vn/rest/orders/get?sort_direction=DESC&offset=0&created_before=2023-10-18T23%3A59%3A59%2B07%3A00&created_after=2023-10-18T00%3A00%3A01%2B07%3A00&limit=10&sort_by=created_at&app_key=12xxxx&sign_method=sha256&access_token=50000200c10tlrxxx&timestamp=1697648276136';

const appSecret = 'AGk5JYxxxxx';

const signature = lazadaOpenApi.signByUrl(url, appSecret);
console.info(signature);

Response Data

{
  signature: 'EC3C4FE433B16CCD1921D37319F4397A308E0731DA0019773B058DBDE3CFA5E2',
  timestamp: 1697648276136
}

Back

Generate Signature

const lazadaOpenApi = require('lazada-open-api-package')

// The package helps remove the "sign", and the "time" has been decoded.
const params = {
    app_key: '12xxxxx',
    code: '0_122xxxxx',
    timestamp: '1697642709712',
    sign_method: 'sha256'
}
const path = '/auth/token/create';
const appSecret = 'AGk5JYxxxxx';
const signature = lazadaOpenApi.signature(params, path, appSecret);
console.info(signature);

Response Data

{
  signature: 'EC3C4FE433B16CCD1921D37319F4397A308E0731DA0019773B058DBDE3CFA5E2',
  timestamp: 1697648276136
}

Back

Generate Timestamp

const lazadaOpenApi = require('lazada-open-api-package')

const timestamp = lazadaOpenApi.timestamp();
console.info(timestamp);

Response Data

1697650466818

Back

Generate Token using Auth Code

const lazadaOpenApi = require('lazada-open-api-package');
const appKey = 'your_app_key';
const authCode = 'your_auth_code';
const appSecret = 'your_app_secret';

const accessToken = await lazadaOpenApi.authCodeToken(appKey, authCode, appSecret);
console.info(accessToken);

Response Data

{
  access_token: '500003xxx',
  country: 'vn',
  refresh_token: '50001xxx',
  country_user_info_list: [
    {
      country: 'vn',
      user_id: '200xxx',
      seller_id: '200xxx',
      short_code: 'xxx'
    }
  ],
  account_platform: 'seller_center',
  refresh_expires_in: 2589988,
  expires_in: 604800,
  account: 'xxx',
  code: '0',
  request_id: 'xxx'
}

Back

Generate Token using Refresh Token

const lazadaOpenApi = require('lazada-open-api-package');
const appKey = 'your_app_key';
const refreshToken = 'your_refresh_token';
const appSecret = 'your_app_secret';

const accessToken = await lazadaOpenApi.authCodeToken(appKey, refreshToken, appSecret);
console.info(accessToken);

Response Data

{
  access_token: '500003xxx',
  country: 'vn',
  refresh_token: '50001xxx',
  country_user_info_list: [
    {
      country: 'vn',
      user_id: '200xxx',
      seller_id: '200xxx',
      short_code: 'xxx'
    }
  ],
  account_platform: 'seller_center',
  refresh_expires_in: 2589988,
  expires_in: 604800,
  account: 'xxx',
  code: '0',
  request_id: 'xxx'
}

Back

Follow me on: Linkedin | Youtube | Facebook

Package Sidebar

Install

npm i lazada-open-api-package

Weekly Downloads

3

Version

1.0.5

License

ISC

Unpacked Size

11.9 kB

Total Files

5

Last publish

Collaborators

  • tuacoustic