jovanzers / dabr

Automatically exported from code.google.com/p/dabr
0 stars 0 forks source link

Fix error "An error occured while calling the Twitter API 403" #389

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Duplicate of issue 387 and this was already patched last week.

Original comment by ryancul...@gmail.com on 17 Jan 2014 at 6:38