limepot-xyz/public/scripts/lastfm.js

13 lines
353 B
JavaScript
Raw Normal View History

2024-07-13 00:03:34 -06:00
let user = "limepotato";
let url =
"https://lastfm-last-played.biancarosa.com.br/" + user + "/latest-song";
let song = document.querySelector("#song");
2024-07-04 16:52:51 -06:00
fetch(url)
2024-07-13 00:03:34 -06:00
.then(function (response) {
return response.json();
})
.then(function (json) {
song.innerHTML =
json["track"]["name"] + " - " + json["track"]["artist"]["#text"];
});