Can scrobble track maps

This commit is contained in:
Claudio Ortolina
2025-05-07 08:11:44 +01:00
parent ea08f844ff
commit 83d13da679
3 changed files with 91 additions and 0 deletions
+6
View File
@@ -47,6 +47,12 @@ defmodule LastFm do
API.get_session(token, last_fm_config)
end
def scrobble(tracks, session_key) do
last_fm_config = last_fm_config()
API.scrobble(tracks, session_key, last_fm_config)
end
def auth_url do
last_fm_config = last_fm_config()
"https://www.last.fm/api/auth/?api_key=" <> last_fm_config.api_key