Do you get any error? can you enable the log and mail me the log file. enable the log and wait for couple of days then send me the log file at ajmatharu[at]gmail[dot]com
@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 = 'http://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
I had three sites on which the plugin stopped working on 6/12/2013. Is there an update? I hope so, because this is fast becoming my favorite WordPress plugin.
There seems to be some problem with Tweet Old Post, I’m working on it will release an update today.
Well, anything using a URL like:
$url = 'http://api.twitter.com/1/statuses/update.json';
is going to fail now. It might work if changed to:
$url = 'http://api.twitter.com/1.1/statuses/update.json';
Perfect. I installed it on my 3 different sites on 3 different systems. Appears to be working. Thank you so much!
I really like this plugin.
Yes, my version 4.0.4 stopped working on 11th June (getting http 410 error messages). I upgraded to 4.0.7 and it all works fine again. Thanks.
This plugin is very buggy!
Working on all but one site. I have had the log set for some time now: http://caravanliving.com.au . I have amended top-admin.php to allow for my custom post type just like I did on other similar sites.
No tweets appear.
When I click TWEET NOW, I get no posts to tweet message.