oauth_problem=signature_invalid
Hi...
Can any one help me out in this issue.
This is my reqURL
String reqUrl = "https://api.login.yahoo.com/oauth/v2/get_request_token?"
+"oauth_nonce="+new Random().nextInt()
+"&oauth_timestamp="+((int)(System.currentTimeMillis() / 1000))
+"&oauth_consumer_key="+key
+"&oauth_signature_method=HMAC-SHA1"
+"&oauth_signature="+secret
+"&oauth_version=1.0"
+"&oauth_callback="+callback;
and i'm using the post method..
client.executeMethod(getm);
System.out.println("after client execution"+getm.getResponseBodyAsString());
here i'm getting the above error.
Plz solve my issue
by
0 Replies