You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
343 B
17 lines
343 B
4 years ago
|
// 国家编码列表
|
||
|
module.exports = (query, request) => {
|
||
|
const data = {};
|
||
|
return request(
|
||
|
'POST',
|
||
|
`https://interface3.music.163.com/eapi/lbs/countries/v1`,
|
||
|
data,
|
||
|
{
|
||
|
crypto: 'eapi',
|
||
|
cookie: query.cookie,
|
||
|
proxy: query.proxy,
|
||
|
url: '/api/lbs/countries/v1',
|
||
|
realIP: query.realIP,
|
||
|
},
|
||
|
);
|
||
|
};
|