đź”´ Last.fm Tracks widget

This page is a simple demonstration of the Last.fm Tracks widget showing recent "scrobbles" from a last.fm account. Here you'll also find instructions on how to insert the widget on a webpage. But for a start, you can try customizing the widget shown here, including making it show scrobbles from your own (or any) Last.fm account with public "scrobbles".

A unique feature of this widget, is that it (optionally) displays red "album-headers" in tracklist when it detects multiple tracks from same album has been played successively. Just like Last.fm itself did in the "old days".

You can also see the widget in practical use on Rockland.

The essential

To use the widget on a webpage, get lastfm.js and tracks.css from latest widget release, and place them together on your site. You then need to import lastfm.js as a module. If you do that from html, remember the type attribute:

<script src="lastfm.js" type="module"></script>

Don't include the stylesheet tracks.css yourself. Just make sure to place the stylesheet file at the same location as the lastfm.js script file. The stylesheet will automatically be read from there when a widget is created.

The script defines the custom html-element <lastfm-tracks/>. Now simply insert such an element on the webpage where you want a Tracks widget to be located.

The widget has 3 modes. The Demo and Basic modes are "standalone" modes where widget communicates directly with last.fm's API to get the "scrobbles". The third mode is Backend-supported mode where you need to have a "proxy-api" that the widget can communicate with. The idea is that the proxy-api should "forward" the two methods (user.getinfo and user.getrecenttracks) from last.fm's audioscrobbler 2.0 api that the widget needs to function. Your own backend proxy-api is a very good idea, if your widget is to be placed on a page with more than very modest amounts of traffic, because you can implement "throttling" in the proxy-api to prevent overwhelming numbers of requests being sent directly to last.fm's API.

  1. "Demo" mode

    <lastfm-tracks user="your username"></lastfm-tracks>

    In the "standalone" Demo mode, the widget is "static". Latest "scrobbles" will be loaded upon creation of the widget, but tracklist will not be refreshed after that.

  2. "Basic" mode

    <lastfm-tracks user="your username" apikey="your own api key" interval="60"></lastfm-tracks>

    Adding your own API-key - which you can get for free - puts the widget into the Basic mode where it supports periodically refresh of the tracks-list. With the interval attribute, you can also set the track-list's refresh-rate in seconds.

  3. "Backend-supported" mode

    <lastfm-tracks backend="/proxy-api" interval="35"></lastfm-tracks>

    Add the backend attribute pointing to a custom "proxy API" to enable Backend-supported mode. In such a setup, you will usually define settings like API-key and username in the backend, rather than having them defined by attributes on the widget.

Some advanced "bots" crawling the internet support Javascript, and thus potentially trigger calls to the audioscrobbler API when loading the Tracks widget. To avoid overload of the API, Tracks will by default ignore clients identifying itself with a useragent string including text like "bot", "spider", "crawl", "archive", "harvest", "radar" and "headless". This so far seems effective preventing most such "bots" triggering calls the audioscrobbler API. Notice: In widget version 1.11 or older, bots are by default only ignored in Demo and Basic modes. But from widget version 1.12, bots are by default also ignored in Backend-supported mode. If desired, you can disable "bot-filtering" in Backend-supported mode by adding attribute allowbots to the <lastfm-tracks/> html-element.

Attributes

Potential attributes to set on the <lastfm-tracks/> element:

Get your own API key for Basic or Backend-supported mode

To use the Basic and Backend-supported modes of the widget, you need your own Last.fm API-key. To get this, go to https://www.last.fm/api/authentication. Though this page talks about authentication and secrets, you can ignore that. For our non-authenticated use of the API, you don't need a secret, but you still need an API-key connected to your Last.fm account. So follow the "apply for a key" link. Here you should enter an application name and description.

I imagine something like this will be fine [click to view]...  [screenshot]

Once submitted, you should get a personal API-key which can be used for the Tracks widget, to either enable the widget's Basic mode, or use it via a proxy-api with widget in Backend-supported mode.

Customize widget...

Note, if your browser-window is wide enough, this column is conveniently shown next to widget for easy experimenting🙂

Current widget mode:

Enter user and api-key to try widget in Demo and Basic mode with any Last.fm user:

ℹ️ Try the widget in other sizes by dragging the handle shown next to the lower right corner of the widget.

You can create a widget like it is shown, with css and html like the following: