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

验证手机是否注册、验证用户名是否注册 #540

Merged
merged 1 commit into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
// 检测是否注册
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

两个api的注释都是检测是否注册,感觉有点晕~~

Suggested change
// 检测是否注册
// 检测用户名是否已注册


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 @@
// 检测是否注册
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

两个api的注释都是检测是否注册,感觉有点晕~~

Suggested change
// 检测是否注册
// 检测手机号码是否已注册


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'
}
);
};