I'm working on a desktop application using spotify API. Given that its a desktop application, what will happen if I do not have a callback URI.
How to handle this situation?
I'm working on a desktop application using spotify API. Given that its a desktop application, what will happen if I do not have a callback URI.
How to handle this situation?
Copyright © 2021 Jogjafile Inc.
A typical request looks like this:
...allowing their server to take its time doing work and when finished post the results back to your server. This API expects that you're writing webpages.
That said, if you're trying to create something else--a desktop application--that's "outside of the box" of what they had in mind, then perhaps the easiest way is to write a small webserver that's spun up with your application as part of it. You'd then bind that to http://127.0.0.1:8888 or similar to the desktop computer. This webserver would need to respond to the /callback URL of course and then hand over the response to the main thread of your code.