music jeeas
This commit is contained in:
parent
f7bbf6a36c
commit
fae3a54bfc
1 changed files with 4 additions and 3 deletions
|
@ -6,15 +6,16 @@ class Ans(StdAns):
|
||||||
if len(self.parms) < 2:
|
if len(self.parms) < 2:
|
||||||
return '不加参数是坏文明!'
|
return '不加参数是坏文明!'
|
||||||
|
|
||||||
url = 'https://api.imjad.cn/cloudmusic/'
|
# url = 'https://api.imjad.cn/cloudmusic/'
|
||||||
|
url = 'https://music.jeeas.cn/v1/search'
|
||||||
params = {
|
params = {
|
||||||
'type': 'search',
|
|
||||||
'search_type': 1,
|
|
||||||
'limit': 1,
|
'limit': 1,
|
||||||
|
'from': 'music',
|
||||||
's':self.raw_msg['message'][6:],
|
's':self.raw_msg['message'][6:],
|
||||||
}
|
}
|
||||||
try:
|
try:
|
||||||
resp = requests.get(url=url,params=params).json()
|
resp = requests.get(url=url,params=params).json()
|
||||||
|
# print(resp)
|
||||||
musicid = resp['result']['songs'][0]['id']
|
musicid = resp['result']['songs'][0]['id']
|
||||||
msg = '[CQ:music,type=163,id='+ str(musicid)+']'
|
msg = '[CQ:music,type=163,id='+ str(musicid)+']'
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
Loading…
Reference in a new issue