This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #540 from kurodaakira-jp/master
验证手机是否注册、验证用户名是否注册
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
); | ||
}; |