Skip to content

v0.9.4

Latest
Compare
Choose a tag to compare
@TheNorthMemory TheNorthMemory released this 08 May 10:52
· 1 commit to master since this release
v0.9.4
e1af06b

优化文件上传API功能,支持AxiosAutomatic serialization to FormData用法,伪代码示例如下:

wxpay.v3.merchant.media.upload.post({
 meta: JSON.stringify({ filename, sha256 }),
 file: fs.createReadStream(localfilepath),
}, {
 meta: { filename, sha256 },
 headers: { 'Content-Type': 'multipart/form-data' },
});