Unable to see Spotizerr Auth Tool in the Spotify Connect menu #1

Closed
opened 2025-11-27 18:29:13 +00:00 by done_wonder · 7 comments

Im unable to see "Spotizerr Auth Tool" as a device in Spotify's Connect menu to complete the new authentication process as detailed in https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/releases/tag/v0.0.12

I am still able to successfully download music with my old, previously saved Spotify credentials (needs frequent docker compose restarts though)

My Setup:

  • docker desktop on Windows 10
  • spotizerr-auth-phoenix v0.0.12
  • spotizerr-phoenix v0.0.12

Steps to Reproduce:

  1. update docker image to the new spotizerrphoenix/spotizerr image
  2. (back up and then) delete the existing credentials through the spotizerr UI
  3. run docker run --network=host --rm -it spotizerrphoenix/spotizerr-auth
  4. fill out information until Waiting for Spotify Connection...
  5. check Spotify Connect menu on another device

Additional Steps Taken:

  • I have tried logging out and restarting Spotify on 2 separate other devices than the spotizerr server: 1 windows pc and 1 android phone
  • double checked spelling / values (account name, region)
  • validated my client/secret are working and correct in the app
  • ran as admin
  • pressed enter a bunch
  • restarted my server
  • restarted spotizerr-auth

powershell:
image

docker logs:
image

Spotify Connect menu:
image

Thank you for all your work resurrecting this project!! Please let me know if I can provide any additional details!

  • done_wonder
Im unable to see "Spotizerr Auth Tool" as a device in Spotify's Connect menu to complete the new authentication process as detailed in https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/releases/tag/v0.0.12 I am still able to successfully download music with my old, previously saved Spotify credentials (needs frequent `docker compose restart`s though) My Setup: - docker desktop on Windows 10 - spotizerr-auth-phoenix v0.0.12 - spotizerr-phoenix v0.0.12 Steps to Reproduce: 1. update docker image to the new `spotizerrphoenix/spotizerr` image 2. (back up and then) delete the existing credentials through the spotizerr UI 3. run `docker run --network=host --rm -it spotizerrphoenix/spotizerr-auth` 4. fill out information until `Waiting for Spotify Connection...` 5. check Spotify Connect menu on another device Additional Steps Taken: - I have tried logging out and restarting Spotify on 2 separate other devices than the spotizerr server: 1 windows pc and 1 android phone - double checked spelling / values (account name, region) - validated my client/secret are working and correct in the app - ran as admin - pressed enter a bunch - restarted my server - restarted spotizerr-auth powershell: ![image](/attachments/3bdbff80-2c14-4c63-a5af-c21d65dcb609) docker logs: ![image](/attachments/77ac5cdb-751f-48c3-ae71-5a02b59f5009) Spotify Connect menu: ![image](/attachments/ffd94998-b414-48f9-8b50-0ee5dc4c4a0d) Thank you for all your work resurrecting this project!! Please let me know if I can provide any additional details! - done_wonder

@done_wonder interesting, seems like you have it setup correctly but quick checklist:

  • are you able to reach your spotizzer instance via your local config at http://localhost: 7171
    • seems like youre able to reach it
  • are you doing this from spotify desktop app?
    • can you verify your spotify is on the same network as your docker setup?
    • is the spotify desktop app on the same device your running the auth tool with docker?
    • try having spotify open before running the auth tool?
  • if you already have the credentials backed up try restoring the previous credentials with the new spotizerr-phoenix image
    • make sure you're pulling the latest images

sorry not much help but i wonder if there could be something missing there. based on my interpretation of your steps, it seems like you could try it on the spotify desktop app that's running on same device as your docker auth tool

hope that helps but let me know if you're still running into issues there 👍🏻

@done_wonder interesting, seems like you have it setup correctly but quick checklist: - [x] are you able to reach your spotizzer instance via your local config at `http://localhost: 7171` - [x] seems like youre able to reach it - [x] are you doing this from spotify desktop app? - [ ] can you verify your spotify is on the same network as your docker setup? - [ ] is the spotify desktop app on the same device your running the auth tool with docker? - [ ] try having spotify open before running the auth tool? - [ ] if you already have the credentials backed up try restoring the previous credentials with the new spotizerr-phoenix image - [x] make sure you're pulling the latest images sorry not much help but i wonder if there could be something missing there. based on my interpretation of your steps, it seems like you could try it on the spotify desktop app that's running on same device as your docker auth tool hope that helps but let me know if you're still running into issues there 👍🏻
Author

[RESOLVED]

I love posting nice github/lavaforge issues because then I almost immediately realize i just havent read the docs enough >.<

I fixed this issue by following the If docker doesn't work (it probably won't unless your on linux) advise and running it myself outside of docker. Me in the past may have avoided this issue if the spotizerr-phoenix release notes (https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/releases/tag/v0.0.12) were more verbose about using the auth tool on windows, but I acknowledge the onus is completely on me to read the provided docs in more detail.

steps to replicate on windows:

  1. in powershell: git install https://lavaforge.org/spotizerrphoenix/spotizerr-auth-phoenix.git
  2. cd spotizerr-auth-phoenix
  3. under the Windows (PowerShell) section in README.md, run that code: (updated to spotizerr-auth-phoenix):
    python -m venv .venv; .venv\Scripts\Activate.ps1; pip install spotizerr-auth-phoenix
  4. run the app with .\spotizerr_auth\main.py
  5. follow the instructions, typing in spotizerr instance, accountname, and country code
  6. open spotify ON THE SAME MACHINE, and click librespot-spotizerr
  7. success! confirmed I am now able to use spotizerr-phoenix to download music as expected

Spotify Connect menu ON THE SAME MACHINE
image

Thanks for the quick reply, and thanks again for the effort you're putting in to keep this project going! Please feel free to close this issue

**[RESOLVED]** I love posting nice github/lavaforge issues because then I almost immediately realize i just havent read the docs enough >.< I fixed this issue by following the `If docker doesn't work (it probably won't unless your on linux)` advise and running it myself outside of docker. Me in the past may have avoided this issue if the spotizerr-phoenix release notes (https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/releases/tag/v0.0.12) were more verbose about using the auth tool on windows, but I acknowledge the onus is completely on me to read the provided docs in more detail. steps to replicate on windows: 1. in powershell: `git install https://lavaforge.org/spotizerrphoenix/spotizerr-auth-phoenix.git` 2. `cd spotizerr-auth-phoenix` 3. under the Windows (PowerShell) section in README.md, run that code: (updated to spotizerr-auth-phoenix): `python -m venv .venv; .venv\Scripts\Activate.ps1; pip install spotizerr-auth-phoenix` 4. run the app with `.\spotizerr_auth\main.py` 5. follow the instructions, typing in spotizerr instance, accountname, and country code 6. open spotify **ON THE SAME MACHINE**, and click `librespot-spotizerr` 7. success! confirmed I am now able to use spotizerr-phoenix to download music as expected Spotify Connect menu **ON THE SAME MACHINE** ![image](/attachments/2346f201-4238-42c1-ad69-725944d188f8) Thanks for the quick reply, and thanks again for the effort you're putting in to keep this project going! Please feel free to close this issue

awesome, glad you got it working again ✊🏻

awesome, glad you got it working again ✊🏻

Can either of you verify that the librespot client shows up in a browser window of Spotify, or are you both using an actual Spotify client installed on your computer? @spotizerrphoenix @done_wonder

(I don't have it installed anywhere and unfortunately Flathub seems to be down right now so I can't easily install it and test, so I'm asking here while I figure that out)

Also, since when does this process require opening Spotify on the same device? I swear that in the past I've just picked up my phone and connected to it from the installed app.

EDIT:
Nevermind, I forgot Spotify has a PPA on their website.

To answer my own question: YES this process only works if you open a real Spotify client, not a Firefox window

Can either of you verify that the librespot client shows up in a browser window of Spotify, or are you both using an actual Spotify client installed on your computer? @spotizerrphoenix @done_wonder (I don't have it installed anywhere and unfortunately Flathub seems to be down right now so I can't easily install it and test, so I'm asking here while I figure that out) Also, since when does this process require opening Spotify on the *same device*? I swear that in the past I've just picked up my phone and connected to it from the installed app. EDIT: Nevermind, I forgot Spotify has a PPA on their website. To answer my own question: **YES this process only works if you open a real Spotify client, not a Firefox window**

When I installed spotizerr for the first time 3 months ago from image spotizerr/spotizerr, I am able to connect librespot from my iOS app in same LAN network.

Not sure if it still works now but I wil leave it as it is because my instance is running on a cli ubuntu server so no app can be installed.

When I installed spotizerr for the first time 3 months ago from image spotizerr/spotizerr, I am able to connect librespot from my iOS app in same LAN network. Not sure if it still works now but I wil leave it as it is because my instance is running on a cli ubuntu server so no app can be installed.

@lonhdoan wrote in #1 (comment):

Not sure if it still works now but I wil leave it as it is because my instance is running on a cli ubuntu server so no app can be installed.

FYI for anybody who happens upon this, but if you're in a situation where you do need to recreate credentials and you can't install apps on the server running your spotizerr instance, keep in mind that you can run the auth tool on any device that has access to spotizerr. You just point it to your instance. That's what I did; I ran the auth tool (through docker) on my desktop, where I installed the spotify client, and pointed it to my spotizerr instance running on my server over tailscale.

@lonhdoan wrote in https://lavaforge.org/spotizerrphoenix/spotizerr-auth-phoenix/issues/1#issuecomment-839: > Not sure if it still works now but I wil leave it as it is because my instance is running on a cli ubuntu server so no app can be installed. FYI for anybody who happens upon this, but if you're in a situation where you *do* need to recreate credentials and you can't install apps on the server running your spotizerr instance, keep in mind that you can run the auth tool on any device *that has access* to spotizerr. You just point it to your instance. That's what I did; I ran the auth tool (through docker) on my desktop, where I installed the spotify client, and pointed it to my spotizerr instance running on my server over tailscale.

new update to the auth tool to use a custom spotify connect device name:

new update to the auth tool to use a custom spotify connect device name: - release notes: https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/releases/tag/v4.0.16
Sign in to join this conversation.
No milestone
No project
No assignees
4 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
spotizerrphoenix/spotizerr-auth-phoenix#1
No description provided.