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.json — doc) but doesn't work with URL with data (like https://api.twitter.com/1.1/users/show.json?screen_name=twitter — doc). 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 !