Merge pull request #841 from hcanyz/master

新增 国家编码列表
This commit is contained in:
binaryify 2020-07-13 20:52:46 +08:00 committed by GitHub
commit 9a25400234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,13 @@
// 国家编码列表
module.exports = (query, request) => {
const data = {}
return request(
'POST', `http://interface3.music.163.com/eapi/lbs/countries/v1`, data,
{
crypto: 'eapi',
cookie: query.cookie,
proxy: query.proxy,
url: '/api/lbs/countries/v1'
}
)
}