主题
下载账单API为通用接口,交易/资金账单都可以通过该接口获取到对应的账单。 官方文档
const { createWriteStream } = require('fs') wxpay.v3.billdownload.file.get({ params, responseType, transformResponse: [], }) .then( ({ data, }) => { data.pipe(createWriteStream('./downloaded.csv.gz')) } )