You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
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()
|