This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
limepot-xyz/public/scripts/lastfm.js
2024-07-04 16:52:51 -06:00

9 lines
No EOL
354 B
JavaScript

let user = 'limepotato';
let url = 'https://lastfm-last-played.biancarosa.com.br/' + user + '/latest-song';
let song = document.querySelector('#song');
fetch(url)
.then(function (response) {
return response.json()
}).then(function (json) {
song.innerHTML = json['track']['name'] + ' - ' + json['track']['artist']['#text'];
});