Change IXarea Api Endpoint

This commit is contained in:
MengYX 2020-07-18 22:43:25 +08:00
parent 62e36ef228
commit c25055f875
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
1 changed files with 6 additions and 5 deletions

View File

@ -136,11 +136,12 @@ async function queryKeyInfo(keyData, filename, format) {
async function queryAlbumCoverImage(artist, title, album) {
const song_query_url = IXAREA_API_ENDPOINT + "/music/qq-cover"
try {
const resp = await fetch(song_query_url, {
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({Artist: artist, Title: title, Album: album}),
})
const params = {Artist: artist, Title: title, Album: album};
let _url = song_query_url + "?";
for (let pKey in params) {
_url += pKey + "=" + encodeURIComponent(params[pKey]) + "&"
}
const resp = await fetch(_url)
if (resp.ok) {
let data = await resp.json();
return song_query_url + "/" + data.Type + "/" + data.Id