根据 京东开放平台API文档 生成的带TypeScript类型定义和注释的SDK
$ npm install typed-jd-union-api
import {JdUnionAPI} from 'typed-jd-union-api'
async function run() {
const client = new JdUnionAPI({
appKey: 'xx',
secretKey: 'xxx'
})
const result = await client.queryActivity({
activityReq: { pageSize: 3 }
})
console.log(result.totalCount)
}