Getting application keys for Spotify development on Windows 7 64-bit system

I’m trying to set up Spotify app development on my Windows 7 64-bit machine but running into issues with application keys.

Here’s what I’ve done so far:

  • Got my developer account set up properly
  • Copied the 32-bit libspotify.dll file into the SYSWOW64 folder
  • The developer menu shows up in my Spotify client

The problem is when I try to use the inspector tool. I get a blue popup saying “choose the app you wanna inspect” but when I select any app, nothing actually happens. I can’t get the inspector to work.

I also need application keys to start building my own apps or test the sample code, but the application key request form doesn’t seem to be working at all. I fill it out but nothing happens when I submit it.

My Spotify client version is 0.8.2.610.g090a06f8. I tried checking the console (using CTRL+ALT+HOME) but it doesn’t show any error messages.

Am I missing something in my setup? Has anyone else had this issue with getting application keys or getting the inspector to work properly?

The libspotify SDK was deprecated years ago, and Spotify stopped issuing new application keys around 2017. That’s why the application key request form isn’t working—they’ve basically shut it down. As for the inspector issue, it’s probably because the SDK is outdated and doesn’t play nice with Windows 7. I ran into the same problems with that old setup before I switched. Your best bet is moving to Spotify’s current Web API. No application keys needed, no libspotify SDK. It handles authentication through OAuth and actually works reliably across platforms. Yeah, you’ll have to rewrite your existing code, but it’s the only supported option for Spotify development now.

Same exact issues with my music visualization project back in 2017. That inspector tool breaking mid-selection drove me nuts until I realized Spotify was already killing libspotify support. The blue popup thing? Classic abandoned SDK - client tools still appear but there’s no backend processing anything. What really annoyed me was the application key portal failing silently with zero deprecation warning. Took forever to figure out I was basically coding against a dead API. Once I stopped fighting the old framework, switching to Web API was actually pretty smooth. Auth’s way more straightforward now and the docs are miles better than libspotify ever was.

I faced similar issues while using Windows 7 for Spotify development. The inspector tool’s failure often boils down to permission problems or compatibility between 32-bit and 64-bit components, despite your DLL placement in SYSWOW64. However, the more pressing concern is the obsolescence of the technology you’re using. Spotify completely phased out libspotify around 2016-2017 and transitioned to their Web API, which also means they stopped the application key system in favor of OAuth 2.0. If desktop integration is what you’re after, I suggest exploring the Spotify Connect API or their latest SDKs. The Web API is indeed more robust and receives ongoing updates, so migrating to this current platform could save you a lot of frustration.

libspotify died in 2016 - that’s why your key form isn’t working. I wasted hours debugging the same inspector issue on Win7 before figuring out Spotify killed their servers. you’ll have to use the web API now, no other choice.

libspotify died in 2016 - that’s why your key request isn’t working. Windows 7 compatibility makes it worse, but even if you got it running, you’d be using completely dead tech. Skip the headache and use the Web API instead. It’s maintained and actually works.

Just hit this same issue trying to revive an old university project. Spotify killed the application key system when they ditched libspotify around 2016. That inspector tool behavior you’re seeing? Totally normal when the backend services don’t exist anymore. I wasted hours troubleshooting Windows 7 compatibility before I realized the whole framework was dead. The Web API migration isn’t as bad as it looks, though the auth flow’s pretty different from the old key system. Docs are way better now, and you actually get features that libspotify never had.