diff --git a/module_example/avatar_upload.js b/module_example/avatar_upload.js new file mode 100644 index 0000000000000000000000000000000000000000..5874714f17272938697853ef9eb0c6e40fb38ac8 --- /dev/null +++ b/module_example/avatar_upload.js @@ -0,0 +1,20 @@ +const { avatar_upload, login_cellphone } = require('../main') +const fs = require('fs') +const path = require('path') + +async function main() { + const result = await login_cellphone({ + phone: '手机号', + password: '密码' + }) + const filePath = './test.jpg' + await avatar_upload({ + imgFile: { + name: path.basename(filePath), + data: fs.readFileSync(filePath) + }, + imgSize: 1012, //图片尺寸,需要正方形图片 + cookie: result.body.cookie + }) +} +main() \ No newline at end of file diff --git a/module_example/test.jpg b/module_example/test.jpg new file mode 100644 index 0000000000000000000000000000000000000000..790c2e724ffcf4d8fb1151ae79c97cf6d61656ff Binary files /dev/null and b/module_example/test.jpg differ