mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
// 校验验证码
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
ctcode: query.ctcode || '86',
|
|
cellphone: query.phone,
|
|
captcha: query.captcha,
|
|
}
|
|
return request(
|
|
'POST',
|
|
`/api/sms/captcha/verify`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|