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

shopee-open-api-payment-module

v1.0.4

Published

A nodejs wrapper for shopee open API

Downloads

13

Readme

Shopee Open Api

This is a simple wrapper for Shopee Open API v2

Right now only support Shop API, no Merchant API available.

How to use?

Importing only main module

import ShopeeOpenApi from "shopee-open-api";

Importing constants

import ShopeeOpenApi, { ORDER_STATUS, RETURN_STATUS } from "shopee-open-api";

Create ShopeeOpenAPi instance

const shopee = ShopeeOpenAPI({
  host: "https://partner.test-stable.shopeemobile.com", //change this to production url
  partner_id: +process.env.PARTNER_ID,
  partner_key: process.env.PARTNER_KEY,
  redirect: "https://google.com", //change this to redirection url for shop authorization
});

Common methods under ShopeeOpenAPI

const authUrl = shopee.getAuthLink();
const unauthUrl = shopee.getUnAuthLink();

//For Shop authorization (please refer to official API)
const { access_token, refresh_token } = await shopee.getAccessToken({
  code: "code",
  shop_id: 1234,
});
const { access_token, refresh_token } = await shopee.refreshAccessToken({
  refresh_token: "refresh_token",
  shop_id: 1234,
});

//API under public
const result = await shopee.getShopsByPartner();

Creating Shop instance

You can OPTIONALLY pass a callback function to onRefreshAccessToken which will be called when server returns error_auth

const shop = shopee.createShop({
  shop_id: 12345,
  onGetAccessToken: async () => {
    //get access_token from DB
    return "access_token";
  },
  onRefreshAccessToken: async () => {
    //OPTIONAL
    //you might want to have some logic here to prevent multiple calls to refresh access token
    //get refresh_token from DB
    const { access_token, refresh_token } = await shopee.refreshAccessToken({ refresh_token: "refresh_token", shop_id: 12345 });
    //store new refresh_token & access_token to DB
    return access_token;
  },
});

API under Shop module can be accessed directly via Shop

const result = await shop.getShopInfo();

API from other modules can be accessed via the attributes under Shop

//Order module
const result = await shop.Order.getOrderDetail({ order_sn_list: "201214JAJXU6G7" });
//Chat module
const { response } = await shop.Chat.getMessage({ conversation_id: 12344 });

Modules

Current Available modules

  • Product (Not complete)
  • Shop
  • Order
  • Logistics
  • Chat
  • Public
  • Returns
  • Payment (Escrow details)

Upcoming available modules

  • MediaSpace
  • Merchant
  • FirstMile
  • Discount
  • BundleDeal
  • AddOnDeal
  • Voucher
  • FollowPrize
  • TopPicks
  • ShopCategory
  • AccountHealth
  • Push

For more details, please refer to the official website of Shopee Open API.

-- To republish the package npm publish --access public