I am having some issues with the scribe library for java when i try to search for a user on twitter. I am able to successfully get an Access token as well as do a status update with POST. But for some reason the library isn't working when i try to do a GET search, I am getting the {"request":"/1/users/search.json","error":"Could not authenticate with OAuth."} error. I have turned on debugging and I am getting almost the same base string that gets generated by twitter as an example(oauth_nonce is slightly off). I am guessing it is slightly off because of the difference in time stamp. Here is twitter's base string:
GET&https%3A%2F%2Fapi.twitter.com%2F1%2Fusers%2Fsearch.json&oauth_consumer_key%3Dxxxxxx%26oauth_nonce%3D5f9853168ec4073c55172ca8ab76a20a%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1356037758%26oauth_token%3D100xxxxxxxxWE2UfO93anoWeDegSH5v0PK%26oauth_version%3D1.0%26q%3DTwitter%2520API
Here is mine generated from scribe:
GET&https%3A%2F%2Fapi.twitter.com%2F1%2Fusers%2Fsearch.json&oauth_consumer_key%3Dxxxxxx%26oauth_nonce%3D2369912192%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1356037734%26oauth_token%3D100xxxxxxxxWE2UfO93anoWeDegSH5v0PK%26oauth_version%3D1.0%26q%3Dtwitterapi
I am able to post tweets so i don't think it is teh access token, here is the code i am using to call the search command:
private static final String PROTECTED_RESOURCE_URL = "https://api.twitter.com/1/users/search.json";
if(accessToken.getToken() != "")
{
OAuthRequest request = new OAuthRequest(Verb.GET, PROTECTED_RESOURCE_URL);
request.addBodyParameter("q", query);
service.signRequest(accessToken, request);
Response response = request.send();
returnData = response.getBody();
}
Thanks in advance for any help
getToken()is aStringobject, then you should be using!accessToken.getToken.isEmpty()instead of what you have. You might even need to check if the token isnullfirst.. since you aren't guaranteed a valid object. – Knownasilya Dec 20 '12 at 22:08