Hello Everybody! I have a little problem whith JIRA and OAuth.
I try to get Token by:
ClientRequest request = new ClientRequest(TOKEN_LOCATION);
request.accept(CONTENT_TYPE)
.formParameter("oauth_consumer_key", OAUTH_CONSUMER_KEY)
.formParameter("oauth_signature_method", OAUTH_SIGNATURE_METOD)
.formParameter("oauth_nonce", OAUTH_NONCE)
.formParameter("oauth_timestamp", getTimeStamp())
.formParameter("oauth_signature", OAUTH_SIGNATURE);
ClientResponse<String> response = request.post(String.class);
And have some Exeption:
net.oauth.OAuthException: java.security.SignatureException: Signature length not correct: got 318 but was expecting 64
Signature really right!
Any answers?
Hey Serj,
By performing some research on this matter I found out a very good answer from Martin Cassidy, maybe you'd like to have a read:
https://answers.atlassian.com/questions/263719/using-oauth-and-the-jira-java-rest-client
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.