Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #540 from kurodaakira-jp/master
Browse files Browse the repository at this point in the history
验证手机是否注册、验证用户名是否注册
  • Loading branch information
Binaryify authored Jul 23, 2019
2 parents 92f3fa0 + 744614c commit ec75169
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions module/activate_init_profile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// 检测是否注册

module.exports = (query, request) => {
const data = {
nickname: query.nickname
};
return request(
"POST",
`http://music.163.com/eapi/activate/initProfile`,
data,
{
crypto: "eapi",
cookie: query.cookie,
proxy: query.proxy,
url: '/api/activate/initProfile'
}
);
};
18 changes: 18 additions & 0 deletions module/cellphone_existence_check.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// 检测是否注册

module.exports = (query, request) => {
const data = {
cellphone: query.cellphone
};
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'
}
);
};

0 comments on commit ec75169

Please sign in to comment.