Closed emw8105 closed 2 months ago
Currently WOMM, on other machines it seems sometimes the auth url is generated without params as this: Generated Authorization URL: https://accounts.spotify.com/authorize?response_type=code&scope=user-top-read
should be like this: https://accounts.spotify.com/authorize?client_id=8870b135acab4f6d95926d9d4065514b&response_type=code&redirect_uri=http://localhost:8888/callback&scope=user-top-read
As a result, the frontend attempts to read a clientid and other parameters that don't exist.
Issue was due to env file being named "env" and not ".env", correctly works on other machines with no further problems
Currently WOMM, on other machines it seems sometimes the auth url is generated without params as this: Generated Authorization URL: https://accounts.spotify.com/authorize?response_type=code&scope=user-top-read
should be like this: https://accounts.spotify.com/authorize?client_id=8870b135acab4f6d95926d9d4065514b&response_type=code&redirect_uri=http://localhost:8888/callback&scope=user-top-read
As a result, the frontend attempts to read a clientid and other parameters that don't exist.