1.2.13-rc.1 • Published 8 months ago

@tcwd/weapps-sdk v1.2.13-rc.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

WeApps SDK

WeApps内置SDK,在lowcode中可直接调用。

安装

npm install @govcloud/weapps-sdk

快速开始

import {configure, getSessionId, request} from '@govcloud/weapps-sdk'
    
configure({
  service: {
    domain: 'https://xxx.com', // 生产环境
    appId: 'xxxx',
  }
})

// 登录
getSessionId().then(session => console.log('session id', session))

// 发送请求
request({
      url: `/wll/account/getphone`,
      method: 'POST',
      data: e.detail,
    }).then(res=> console.log('decrypt phone number', res))