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'm trying to work with the Twitter API. So far, I'm having a really hard time.

Since I'm just using a very small part of the API, I really don't want to add a full Twitter PHP library to my script. Also, most of the libraries online are more than 2 years old and work with the old version of the API.

My script works well when I try it with an URL with no data (for example https://api.twitter.com/1.1/users/suggestions.jsondoc) but doesn't work with URL with data (like https://api.twitter.com/1.1/users/show.json?screen_name=twitterdoc). I get a Could not authenticate you error message.

Apparently, I'm not generating the right oauth_signature for this request. I checked that by comparing the signature the Twitter OAuth tool gives me with the one my script gives me.

Here's my code:

$time = time();
$options = array(
    'oauth_consumer_key' => $this->keys['twitter']['consumer_key'],
    'oauth_nonce' => time(),
    'oauth_signature_method' => "HMAC-SHA1",
    'oauth_timestamp' => $time,
    'oauth_token' => $this->keys['twitter']['access_token'],
    'oauth_version' => "1.0"
);
$base_info = $this->buildBaseString($url, 'GET', $options);
$composite_key = rawurlencode($this->keys['twitter']['consumer_secret']) . '&' . rawurlencode($this->keys['twitter']['access_token_secret']);
$oauth_signature = base64_encode(hash_hmac('sha1', $base_info, $composite_key, true));

I took the buildBaseString() function from this article.

What am I doing wrong here?

Thanks !

share|improve this question

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.