You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect to be able to successfully authenticate into spotDL, but instead the program crashes with the error OSError: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions. Running the program as administrator did not help.
Steps to reproduce - Ensure to include actual links!
I'm currently using Python 3.8 from the Windows Store; not sure if that has anything to do with it.
The issue was resolved by stopping the iphlpsvc service in the "Services" program.
This may be different for everybody, so the way I found out which program was taking the :8080 port was by running the command netstat -ano | findstr 8080, then tasklist /FI "pid eq [PID]" (tasklist /svc /FI "pid eq [PID]" if the resulting program was svchost.exe, to get the name of what service was using that port). After some Googling, I found what service it was and that it was safe to disable it in the "Services" program.
Perhaps we can consider changing the port number from 8080 to something else? Or allow the user to customize what port to use in the config?
The text was updated successfully, but these errors were encountered:
edinosma
added
the
Bug
Unexpected problem or unintended behavior that needs to be fixed
label
Nov 10, 2023
System OS
Windows
Python Version
3.8 (CPython)
Install Source
pip / PyPi
Install version / commit hash
v4.2.1
Expected Behavior vs Actual Behavior
I expect to be able to successfully authenticate into spotDL, but instead the program crashes with the error
OSError: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions
. Running the program as administrator did not help.Steps to reproduce - Ensure to include actual links!
spotdl download query saved --user-auth
Traceback
Other details
I'm currently using Python 3.8 from the Windows Store; not sure if that has anything to do with it.
The issue was resolved by stopping the
iphlpsvc
service in the "Services" program.This may be different for everybody, so the way I found out which program was taking the
:8080
port was by running the commandnetstat -ano | findstr 8080
, thentasklist /FI "pid eq [PID]"
(tasklist /svc /FI "pid eq [PID]"
if the resulting program wassvchost.exe
, to get the name of what service was using that port). After some Googling, I found what service it was and that it was safe to disable it in the "Services" program.Perhaps we can consider changing the port number from 8080 to something else? Or allow the user to customize what port to use in the config?
The text was updated successfully, but these errors were encountered: