Make statuses/home_timeline return the same thing as statuses/friends_timeline to support apps trying to use the new retweet API method.
This commit is contained in:
parent
fd86c6eb19
commit
1710082f04
|
@ -136,6 +136,11 @@ class TwitapistatusesAction extends TwitterapiAction
|
|||
|
||||
}
|
||||
|
||||
function home_timeline($args, $apidata)
|
||||
{
|
||||
call_user_func(array($this, 'friends_timeline'), $args, $apidata);
|
||||
}
|
||||
|
||||
function user_timeline($args, $apidata)
|
||||
{
|
||||
parent::handle($args);
|
||||
|
|
|
@ -268,12 +268,12 @@ class Router
|
|||
$m->connect('api/statuses/:method',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(public_timeline|friends_timeline|user_timeline|update|replies|mentions|show|friends|followers|featured)(\.(atom|rss|xml|json))?'));
|
||||
array('method' => '(public_timeline|home_timeline|friends_timeline|user_timeline|update|replies|mentions|show|friends|followers|featured)(\.(atom|rss|xml|json))?'));
|
||||
|
||||
$m->connect('api/statuses/:method/:argument',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(|user_timeline|friends_timeline|replies|mentions|show|destroy|friends|followers)'));
|
||||
array('method' => '(user_timeline|home_timeline|friends_timeline|replies|mentions|show|destroy|friends|followers)'));
|
||||
|
||||
// users
|
||||
|
||||
|
@ -432,7 +432,7 @@ class Router
|
|||
$m->connect('api/statuses/:method/:argument',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(|user_timeline|friends_timeline|replies|mentions|show|destroy|friends|followers)'));
|
||||
array('method' => '(user_timeline|home_timeline|friends_timeline|replies|mentions|show|destroy|friends|followers)'));
|
||||
|
||||
$m->connect('api/statusnet/groups/:method/:argument',
|
||||
array('action' => 'api',
|
||||
|
|
Loading…
Reference in New Issue
Block a user