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.
24 lines
498 B
24 lines
498 B
4 years ago
|
const { cloud, 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.mp3'
|
||
|
try {
|
||
|
await cloud({
|
||
|
songFile: {
|
||
|
name: path.basename(filePath),
|
||
|
data: fs.readFileSync(filePath),
|
||
|
},
|
||
|
cookie: result.body.cookie,
|
||
|
})
|
||
|
} catch (error) {
|
||
|
console.log(error, 'error')
|
||
|
}
|
||
|
}
|
||
|
main()
|