I'm working with client who provided me with somewhat vague
instructions. Here's what I'm doing (using CommonsHttpOAuthConsumer
as
consumer and DefaultOAuthProvider
as provider)
I'm able to get response token from doing this:
String requestToken = provider.retrieveRequestToken (OAuth.OUT_OF_BAND);
this is in form of URL with params so I'm parsing the actual token out for example:
https://foobar.com/oauth/login_authorize?oauth_token=XRFCGPbES3M2bYZy...
Now - the instructions that I get say:
Given the request token obtained in step 1, login with the user’s credentials (name and password) as POST parameters and sign the request with the request token/secret POST https://foobar.com/oauth/login_authorize
That's where I'm having difficulties. Obviously I have to input that
requestToken somewhere so I do this (post
is HttpPost that contains user credentials):
consumer.setTokenWithSecret(requestToken, SECRET);
consumer.sign(post);
It doesn't work. It actually generates 200 status but what I get is a generic error message.
retrieveRequestToken
does not return a request token, it returns an authenticationUrl that you need to send your users to so they can sign in. Request token is saved in provider object.Note: According to the oauth standard the users sign in on the providers site with their credentials. After they have done that you (as a consumer) can get the Access Token and after that you can access their data on the providers site.
If you have the user credentials you can do the authorization in your script
And then do
retrieveRequestToken
and the code mentioned aboveHope this helps you // Jonas