Add route for /statuses/show
This commit is contained in:
parent
a3901e0e24
commit
8b8e0c95af
|
@ -83,7 +83,7 @@ class ApiShowAction extends TwitterapiAction
|
|||
/**
|
||||
* Handle the request
|
||||
*
|
||||
* Just show the notices
|
||||
* Check the format and show the notice
|
||||
*
|
||||
* @param array $args $_REQUEST data (unused)
|
||||
*
|
||||
|
@ -103,7 +103,7 @@ class ApiShowAction extends TwitterapiAction
|
|||
}
|
||||
|
||||
/**
|
||||
* Show the timeline of notices
|
||||
* Show the notice
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
@ -125,14 +125,14 @@ class ApiShowAction extends TwitterapiAction
|
|||
|
||||
if (!empty($deleted)) {
|
||||
$this->clientError(
|
||||
_('Status deleted.'),
|
||||
410,
|
||||
_('Status deleted.'),
|
||||
410,
|
||||
$this->format
|
||||
);
|
||||
} else {
|
||||
$this->clientError(
|
||||
_('No status with that ID found.'),
|
||||
404,
|
||||
404,
|
||||
$this->format
|
||||
);
|
||||
}
|
||||
|
|
|
@ -332,10 +332,19 @@ class Router
|
|||
'id' => '[a-zA-Z0-9]+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/statuses/show.:format',
|
||||
array('action' => 'ApiShow',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/statuses/show/:id.:format',
|
||||
array('action' => 'ApiShow',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/statuses/:method',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(update|show|featured)(\.(atom|rss|xml|json))?'));
|
||||
array('method' => '(update|featured)(\.(atom|rss|xml|json))?'));
|
||||
|
||||
$m->connect('api/statuses/:method/:argument',
|
||||
array('action' => 'api',
|
||||
|
|
Loading…
Reference in New Issue
Block a user