@matharuajay
Twitter API 1.0 is retired as of June 11 2013. Your changelog says it is using API 1.1 but it is still API 1.0 in the code:
includes\top.oauth.php
function update_status($token, $token_secret, $status) {
$params = array();
$params['oauth_consumer_key'] =$this->oauth_consumer_key;
$params['oauth_signature_method'] = 'HMAC-SHA1';
$params['oauth_timestamp'] = time() + $this->oauth_time_offset;
$params['oauth_nonce'] = $this->get_nonce();
$params['oauth_version'] = '1.0';
$params['oauth_token'] = $token;
$params['status'] = $status;
if ( top_is_debug_enabled() ) {
TOP_DEBUG( '..params are ' . print_r( $params, true ) );
}
$url = 'https://api.twitter.com/1/statuses/update.json';
$result = $this->do_oauth($url, $params, $token_secret);
if ($result) {
//$new_params = TOP_parsexml($result);
return true;
} else {
return false;
}
}
https://dev.twitter.com/blog/api-v1-is-retired