我收到错误could not authenticate you 32
我正在使用正确的访问令牌和消费者密钥,但仍然收到此错误。 谁能说出发生了什么?
更新1
PHP 我正在使用亚伯拉罕TwitterOAuth图书馆
require_once("Abraham/TwitterOAuth/autoload.php");
use Abraham\TwitterOAuth\TwitterOAuth;
function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {
$connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);
return $connection;
}
$connection = getConnectionWithAccessToken($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);
$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets);
echo json_encode($tweets);