我正在使用 twitter api 来获取转发,对于特定的推文
$url = "https://api.twitter.com/1.1/statuses/retweet/830785820722343937.json";
$requestMethod = 'POST';
$getfield = "";
$twitter = new TwitterAPIExchange($settings);
$string = $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
$string = json_decode($string,$assoc = TRUE);
但是得到这个错误
[code] => 32 [message] => 无法验证您的身份。
请帮忙