Git Product home page Git Product logo

coa-wx-isv's Introduction

coa-wx-isv

GitHub license npm version npm downloads PRs Welcome

一个轻量的微信 SDK 服务商版 for Node.js

特点

根据日常实际项目使用情况:

  • 覆盖了绝大多数使用场景
  • 统一了异步表现形式,全部返回 Promise
  • 内置类型引用,无需额外查看文档,开箱即用,IDE 友好

快速开始

安装

yarn add coa-wx-isv

直接使用

import { WxIsvAuthService, WxIsvBin } from 'coa-wx-isv'

// 服务商配置
const config = {
  appId: 'wxe4fe827fc87f0000',
  appSecret: '04277da11000000000000000ddc25c063',
  appToken: 'B0D791C6AAAAAAAAAAAAAAAA874DFEDEC8',
}

// 初始化Bin实例
const bin = new WxIsvBin(config)

// 根据bin初始化一个授权类的服务
const authService = new WxIsvAuthService(bin)

// 调用服务
await authService.getAuthInfoByCode('code')

记录错误信息

import { WxIsvDomainService, WxIsvBin } from 'coa-wx-isv'

// 自定义bin实例
class MyWxIsvBin extends WxIsvBin {
  // 自定义请求异常的事件
  onRequestError(error, res) {
    // 在这里记录错误
    console.log(error)
    console.log(res)
  }
}

// 初始化自定义的Bin实例
const myBin = new MyWxIsvBin(config)

// 根据自定义的Bin实例,创建一个域名服务
const domainService = new WxIsvDomainService(myBin)

// 调用服务
await domainService.setBiz('accessToken', 'domian')

// 错误地调用服务
await domainService.setBiz('', '') // onRequestError 会记录这条错误信息

coa-wx-isv's People

Contributors

adaex avatar willerhe avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.