require_once('TwitterAPIExchange.php');
/** Set access tokens here - see: https://dev.twitter.com/apps/ **/
$settings = array(
'oauth_access_token' => "174810258-veo5BellE17nmBpFP0KfUTE5zj3tyWPbnpN5JAB2",
'oauth_access_token_secret' => "HNFp0S4Kjf8h882SPE4K5Od9EN31ahQlO35YB3FHL3d4Q",
'consumer_key' => "nuUzZ5LiaeQUgA54CsQtjJSLv",
'consumer_secret' => "DaoHZUYLVHYs3a7Xo5C74cdNgUe3u3hx9lRlGkk3PSI8np6kgZ"
);
$url = 'https://api.twitter.com/1.1/followers/list.json';
$getfield = '?username=J7mbo&skip_status=1';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
echo $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
?>