I'm new to OAuth and having trouble visualizing the process behind how it works.
From what I understand, when I attempt to verify credentials via OAuth, I send a request to the login server, which takes over and has the user log in on the site itself. If credentials were valid, the callback URL of the OAuth request is then visited, and a token is attached to the callback URL. This token must be passed with all future HTTP requests to the server, and serves as validation of the user's credentials.
Where I am confused is, how do I adapt this process for a desktop application with no server? What do I use for a callback URL, and how do I retrieve the token if I'm just running a .NET application on my desktop?
Thanks!