I wonder if (and on what systems) and how it is possible to temporarily register an URL scheme in the default browser.
Background: I am writing a desktop application which uses OAuth for authentication. As the callback URL, I want to have a custom, unique URL to not clutter the users allowed-access-list with dummy entries. For more details, read here.
It seems that it is possible on Android to register an URL scheme for an application. An example is here.
This seems to be possible in a similar way on the iPhone. E.g. here.
For Windows, it seems that I have to register that into the registry. See here.
My application currently is just a simple Python script. Also, the registering should not require some sort of Administrator permission. It should anyway only be temporarily and only for one single new browser tab/window I open.
Maybe this is not possible yet. But maybe you can head me to other solutions for this problem (basically: to open some webpage from an application and get a response somehow). One other solution is to spawn a local webserver like I have done here but this is not optimal (read about the problems on my other SO question).