As we know, start on January 14th, 2014, connection to api.twitter.com will be
restricted to TLS/SSL connections only.
It will cause "An error occured while calling the Twitter API 403" after we
login.
To fix this, we need to change index.php at line:
// Twitter's API URL.
define('API_NEW','http://api.twitter.com/1.1/');
define('API_OLD','http://api.twitter.com/1/');
to
// Twitter's API URL.
define('API_NEW','https://api.twitter.com/1.1/');
define('API_OLD','https://api.twitter.com/1/');
Original issue reported on code.google.com by adeb...@gmail.com on 17 Jan 2014 at 3:31
Original issue reported on code.google.com by
adeb...@gmail.com
on 17 Jan 2014 at 3:31