Patrick Motard
Patrick Motard
I believe this is a duplicate of https://github.com/samuelmeuli/action-electron-builder/issues/58 I'm also running into this issue. There is no known workaround.
All of the links provided are broken.
Would be nice to see this get merged.
@adamgrieger I completely understand. You've done so much great work here. It's important to take breaks! I would be more than happy to add examples. I'll admit I haven't taken...
Still trying to get authentication working. I swapped out the spotify-web-api-node client with this one, and replaced all the different function calls that were different between the two. I can...
I believe Authorization Code flow. Hopefully that answers your question? I'm using `GetRefreshableAuthorizationUrl` https://github.com/adamgrieger/spotify-web-api-ts/blob/aaa78bc5340f4094c806846d04b36e9cf8322fab/src/index.ts#L108. I construct that url, and render it in electron. That loads the page from spotify that...
@adamgrieger are you able to able to test this with a scope that you haven't already granted previously? This auth flow works fine for me if i use scopes I...
I'm also not able to use `http://localhost:8888/callback.html` as a redirect url, i get the error: `INVALID_CLIENT: Invalid redirect URI`. `http://localhost:8888/callback` works fine though (with scopes i have already authorized)
Also, getTemporaryAuthorizationUrl does not work for me at all. Only getRefreshableAuthorizationUrl works for me.
The answer to my woes, I believe, is in the status code. `GET https://accounts.spotify.com/authorize/accept 405` is the issue. When clicking the accept button in the browser, the browser sends a...