@wecity/weda-sdk
v2.7.2
Published
SDK for weapps development, e.g. session management.
Downloads
312
Maintainers
Keywords
Readme
WeApps SDK
WeApps内置SDK,在lowcode中可直接调用。
安装
npm install @wecity/weda-sdk
快速开始
import {configure, getSessionId, request} from '@wecity/weda-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))