I am making an application that works from the command line, and run locally on my computer. I want to be able to share it with other people, and thus are trying to apply OAuth. Do I need a server for the callback? If yes, can I just create it for a second, get the response, and close it?
Thanks
According to Okta, yes, you need to spin up a temporary HTTP server:
The example is in PHP, but the idea should also apply to Python.