diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/api.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/api.php b/actions/api.php index ea24cbe4a..eeee77ec2 100644 --- a/actions/api.php +++ b/actions/api.php @@ -100,7 +100,9 @@ class ApiAction extends Action { # Whitelist of API methods that don't need authentication function requires_auth() { - static $noauth = array( 'statuses/public_timeline', + static $noauth = array( 'statuses/public_timeline', + 'statuses/user_timeline', + 'statuses/show', 'help/test', 'help/downtime_schedule'); if (in_array("$this->api_action/$this->api_method", $noauth)) { |