mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
更新nodejs调用头像上传例子
This commit is contained in:
parent
5fc7b5999d
commit
da7a535cc6
20
module_example/avatar_upload.js
Normal file
20
module_example/avatar_upload.js
Normal file
@ -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()
|
BIN
module_example/test.jpg
Normal file
BIN
module_example/test.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 125 KiB |
Loading…
x
Reference in New Issue
Block a user