保护特定的请求类型,restful API,Laravel


Protecting specific request types, restful API, Laravel

我只想保护对索引的POST请求,我该怎么做?

public $restful = true;
public function __construct()
{
    parent::__construct(); 
            //this does not work
    $this->filter('before', 'auth')->only(array('post_index'));
}
public function get_index()
{
            //I do not want to protect this
    return Response::eloquent(Model::all()); 
}
public function post_index()
{
            //I want to protect only this call
}

您就快到了!如果只想保护POST请求,请结合使用only()on()方法。尝试:

$this->filter('before', 'auth')->only('index')->on('post');

以下是api页面供参考。