使用 CodeIgniter 的 Rest Server 扩展设置授权级别

发布于 2024-12-05 04:32:52 字数 374 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

避讳 2024-12-12 04:32:52

以下受保护的方法需要位于 API 控制器的顶部。您可以在此处指定每种方法的授权级别和速率限制。

   protected $methods = array(
           'index_get' => array('level' => 10),
           'types_get' => array('level' => 10, 'limit' => 20),
   );

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.

   protected $methods = array(
           'index_get' => array('level' => 10),
           'types_get' => array('level' => 10, 'limit' => 20),
   );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文