Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
If the token, which you attain using getToken() is a String object, then you should be using !accessToken.getToken.isEmpty() instead of what you have. You might even need to check if the token is null first.. since you aren't guaranteed a valid object. – Knownasilya Dec 20 '12 at 22:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.