The documentation for the AppHarbour oauth API only shows how to perform oauth within a web site, i.e. using a redirect_uri
GET https://appharbor.com/user/authorizations/new?client_id=:client_id&redirect_uri=:http://mysite.com/home/auth
This ends up re-directing to http://mysite.com/home/auth?&code=ACCESS_CODE
But is there a way to get the ACCESS_CODE value back as part of the GET? I'm looking to use the AppHarbour api within a desktop app. I can use an embedded web-browser to open a web page so that the user can authenticate my app, but I don't have a re-direct url for it to return to?
How can I use the api to do this?
We only realized the need for a non-web OAuth flow after announcing the AppHarbor API contest where we gamely suggested you guys build various desktop apps using the API, without providing a useful way to authenticate these kinds of apps.– Matt Warren Jun 22 '12 at 16:31