Is there some kind of Spotify Developer Kit that I'm missing on their website? The developer docs suggest that getting tools for Spotify development is "as easy as downloading the Spotify desktop client."
However, in order to run the Spotify API, I need to run my app with Spotify, which means opening it in the Spotify client. It also means that opening it with something like Firefox is impossible. Thus, the only view of my application is the Spotify app view, which provides no debug features or even any compiler level error handling. If I screw up a minor part of the code that still allows the app to run, I get no warnings and no errors. Moreover, I have to restart Spotify every time I make a change to the app.
If I try opening it with a debugger like Firefox, the debugger won't get past the first line of code, because getSpotifyApi(1)
makes no sense outside of Spotify. Any suggestions?
app.enable-developer-mode=true
in"~/Library/Application Support/Spotify/prefs"
butCommand + Option + I
did nothing :/ – Examine