emw8105 / Wallify

A fun program designed to allow a user to generate a custom wallpaper of their top music choices using their spotify data
https://wallify.doypid.com/
1 stars 0 forks source link

ISSUE: Auth URL Discrepancy #2

Closed emw8105 closed 2 months ago

emw8105 commented 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.

emw8105 commented 2 months ago

Issue was due to env file being named "env" and not ".env", correctly works on other machines with no further problems