neteasecloudmusicapi/module/cellphone_existence_check.js
2019-08-16 10:57:31 +08:00

19 lines
365 B
JavaScript

// 检测手机号码是否已注册
module.exports = (query, request) => {
const data = {
cellphone: query.phone
};
return request(
'POST',
`http://music.163.com/eapi/cellphone/existence/check`,
data,
{
crypto: 'eapi',
cookie: query.cookie,
proxy: query.proxy,
url: '/api/cellphone/existence/check'
}
);
};