Deezer Authentication

{#if !$deezerAuth.loggedIn}
Login to Deezer

Enter your Deezer ARL token to authenticate:

{#if errorMessage}
⚠ {errorMessage}
{/if} {#if successMessage}
✓ {successMessage}
{/if}
How to get your ARL token
  1. Open Browser
  2. Go to www.deezer.com and log into your account
  3. After logging in press F12 to open up Developer Tools
  4. Go under the Application tab (if you don't see it click the double arrow)
  5. Open the cookie dropdown
  6. Select www.deezer.com
  7. Find the arl cookie (It should be 192 chars long)
  8. Make sure only copy the value and not the entire cookie
  9. That's your ARL, now you can use it in the app
{:else}
User Info
{#if successMessage}
✓ {successMessage}
{/if}
Add Track to Download Queue

Add a track to the download queue:

Default: 3135556 (Daft Punk - One More Time)
{#if trackInfo}
{trackInfo.SNG_TITLE} by {trackInfo.ART_NAME}
Album: {trackInfo.ALB_TITLE} • Duration: {Math.floor(trackInfo.DURATION / 60)}:{String(trackInfo.DURATION % 60).padStart(2, '0')}
{/if} {#if queueStatus}
{queueStatus}
{/if} {#if queueError}
⚠ {queueError}
{/if}
{#if !$settings.musicFolder}

⚠ Please set a music folder in Settings before adding to queue.

{/if}
{/if}