I have a script in PHP, that get the access_token (painfull Twitter oAuth..) of twitter, the script get token, show the permisions window, an the redirect works geting oauth_token,oauth_token_secret, user_id and screen_name. All ok for now. But im try to get user twitter information, like email, but i dont know how call the API to get this info.
My script for get the oauth_token in the redirect is like this, and Work OK:
$baseURI = 'https://api.twitter.com/oauth/access_token';
$nonce = md5(time() . SALT); // Cadena "secreta-aleatoria"
$timestamp = time();
$oauth = array(
'oauth_consumer_key' => TWITTER_CLIENT_ID,
'oauth_token' => $oauth_token,
'oauth_verifier='.$oauth_verifier,
'oauth_nonce' => $nonce,
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => $timestamp,
'oauth_version' => '1.0'
);
$baseString = $this->twBuildBaseString($baseURI, $oauth);
$compositeKey = $this->twGetCompositeKey(TWITTER_CLIENT_SECRET_ID, null);
$oauth_signature = base64_encode(hash_hmac('sha1', $baseString, $compositeKey, true));
$oauth['oauth_signature'] = $oauth_signature;
$response = $this->twSendRequest($oauth, null, $baseURI);
$responseArray = array();
$parts = explode('&', $response);
foreach($parts as $p){
$p = explode('=', $p);
$responseArray[$p[0]] = $p[1];
}
// $responseArray['oauth_token'] <= HERE IS THE TOKEN
And Im try to call the account information sistem, using similar method, pasing the fu** twitter oauth headers, and the oauth_token, and the aouth_token_secret, but twitter reponse is this:
{"errors":[{"message":"Could not authenticate you","code":32}]}
Here is my code:
if (!empty($responseArray['oauth_token'])) {
$baseURI = 'https://api.twitter.com/1.1/account/verify_credentials.json';
$nonce = md5(time() . SALT);
$timestamp = time();
$oauth = array(
'oauth_consumer_key' => TWITTER_CLIENT_ID,
'oauth_token' => $responseArray['oauth_token'],
'oauth_token_secret' => $responseArray['oauth_token_secret'],
'oauth_nonce' => $nonce,
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => $timestamp,
'oauth_version' => '1.0'
);
$baseString = $this->twBuildBaseString($baseURI, $oauth);
$compositeKey = $this->twGetCompositeKey(TWITTER_CLIENT_SECRET_ID, null);
$oauth_signature = base64_encode(hash_hmac('sha1', $baseString, $compositeKey, true));
$oauth['oauth_signature'] = $oauth_signature;
$response = $this->twSendRequest($oauth, null, $baseURI);
echo $response;
}
¿How I do wrong?