I did send an HTTP GET request to http://springpadit.com/developers/oauth/register-app
- signed with my consumer key and consumer secret - to register my app
(per docs again).
And my Callback Url is also valid...
Any inputs/leads are appreciated.
From the Docs:
-------------
Step 2: Redirect the user to Springpad's access page
With the request token, now redirect the user to Springpad where they
will be asked to grant your application access. In the following code
sample, we create the URL to direct the user to.
url = "http://springpadit.com/api/oauth-authorize%?s" % request_token
# produces:
http://springpadit.com/api/oauth-authorize?oauth_token_secret=0e71505050ab9c685b7b85aa37cb95cd&oauth_token=d51e15710bfee0a680cf06325b8fcb27
1. encrypt the packet so that service couldn't be compromised (and protect against replay attacks, etc)
2. prevent a third-party app (in this case you) from seeing the user's password
By using HTTPS we cover the first requirement. As to the second, the process of going out to a browser from inside an application for the user to authenticate is pretty wonky, even user hostile. There are many services that do not require this and are therefore easily integrated with (e.g., instapaper, gowalla). Oauth 2 is potentially the answer to this and we may go that way in the future.
In the meantime, we do still support oauth 1. I can let you know when we've had a chance to check on the bug that your reporting with the redirect.
Pete