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've already verified the generation of the signature is working. At least, with the example provided here: https://dev.twitter.com/docs/auth/creating-signature, but it still keeps giving me 401s. Here is my code:

//Calculate the final authorization http header for the token request
$consumer_key_secret = '(omitted)';
$token_secret = '(omitted)';

$params['oauth_callback'] = '(omitted)';
$params['oauth_consumer_key'] = '(omitted)';
$params['oauth_nonce'] = md5(microtime() . '');
$params['oauth_signature_method'] = 'HMAC-SHA1';
$params['oauth_timestamp'] = time();
$params['oauth_version'] = '1.0';

$base_url = 'http://api.twitter.com/oauth/request_token';
$base_method = 'POST';

$parameters = array();
foreach($params as $key => $value)
{ 
    $parameters[] = rawurlencode($key) . '=' . rawurlencode($value);
}

$parameter_string = implode('&', $parameters);

$base_string = $base_method . '&' . rawurlencode($base_url) . '&' . rawurlencode($parameter_string);
$signing_key = rawurlencode($consumer_key_secret) . '&' . rawurlencode($token_secret);

$params['oauth_signature'] = base64_encode(hash_hmac('sha1', $base_string, $signing_key, true));

$authParameters = array();
foreach($params as $parameter => $value)
{
    if(substr($parameter, 0, 5) != 'oauth')
        continue;
    $authParameters[] = rawurlencode($parameter) . '="' . rawurlencode($value) . '"';
}

$authorization = 'OAuth ' . implode(', ', $authParameters);

//Retrieve the token
$request = curl_init($base_url);
curl_setopt($request, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($request, CURLOPT_VERBOSE, 1);
curl_setopt($request, CURLOPT_HEADER, true);
curl_setopt($request, CURLOPT_HTTPHEADER, array('Accept: */*', 'Authorization: ' . $authorization));
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);

$output = curl_exec($request);
echo($output . '<br />');
    var_dump(curl_getinfo($request));
curl_close($request);

Edit: is there something wrong with my question? Any more information I need to provide? Or is the question just too boring?

share|improve this question
How about using Zend_Service_Twitter ? – KeyneON Sep 14 '12 at 21:59
@Keyne Thanks for the suggestion, but unfortunately I have to write it myself. Furthermore I'm really curious now what I'm doing wrong. – niomaster Sep 22 '12 at 9:32

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.