I am working on a python application which allows me to post updates/statuses to Facebook.
I am facing a basic problem with getting access tokens.
Since this application is working on the desktop, there is no question of using some web server.
I understand that I have to open a URL:
https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=https://www.facebook.com/connect/login_success.html
..and get the tokens out of the redirected URL.
But even this is out of option, since mine is a console based application. The closest I can get to using embedded browser is by using Python's mechanize module.
Is there any other option?
