firstly I know there are plenty of oauth libs out there, and I have thought about using them, but decidede not to, so I am writing my own just for the heck of it. I am having an issue with signing the request though... some help?
function signRequest($secret, $baseUrl){
return base64_encode(hash_hmac('sha1', $baseUrl, $secret, TRUE));
}
function getRequestToken(){
$urlParams = array(
"oauth_consumer_key"=>$this->consumer_key,
"oauth_signature_method"=>$this->oauth_signature_method,
"oauth_timestamp"=>time(),
"oauth_nonce"=>time(),
"oauth_version"=>$this->oauth_version
);
uksort($urlParams, 'strcmp');
foreach($urlParams as $k=>$v){
$joinedParams[] = $k."=".$v;
}
$joinedParams = implode("&", $joinedParams);
$baseString = "POST&".rawurlencode($this->request_token_url)."&".rawurlencode($joinedParams);
$secret = $this->consumer_secret."&";
$urlParams['oauth_signature'] = $this->signRequest($secret, $baseUrl);
uksort($urlParams, 'strcmp');
foreach($urlParams as $k => $v){
$urlPairs[] = $k."=".$v;
}
$concatenatedUrlParams = implode('&', $urlPairs);
$url = $this->request_token_url."?".$concatenatedUrlParams;
echo $url;
}
I am new to the whole signing of request thing. I was able to connect to the twitter api using the following link though. Mine is essentially a rewritten cody of the following answer...