使用 CodeIgniter 的 Rest Server 扩展设置授权级别
我正在使用 CodeIgniter 的 Rest Server (https://github.com/philsturgeon/codeigniter-restserver) 扩展,并且我正在努力寻找有关如何在方法中设置授权级别的示例。
我已经尝试了以下所有方法:
public function index_get()
{
$this->methods['index']['level'] = 10;
$this->methods['level'] = 10;
$this->rest->level = 10;
$this->level = 10;
}
没有运气。示例表示赞赏。谢谢!
I'm using the Rest Server (https://github.com/philsturgeon/codeigniter-restserver) extension for CodeIgniter and I'm struggling to find examples on how to set the authorization level within a method.
I've tried all of the following:
public function index_get()
{
$this->methods['index']['level'] = 10;
$this->methods['level'] = 10;
$this->rest->level = 10;
$this->level = 10;
}
With no luck. Examples appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下受保护的方法需要位于 API 控制器的顶部。您可以在此处指定每种方法的授权级别和速率限制。
The following protected method needs to go at the top of the API controller. Here you can specify the authorization level for each method and the rate limit.