Cake REST API的登录参数问题

时间:2019-06-27 11:47:50

标签: php authentication cakephp

对于一个项目,我需要使用cakePHP创建一个rest API。 Ans我使用邮递员对其进行测试。

我已经按照食谱创建了路线。但是当我尝试路线时,我发现我的路线并没有考虑所有的json参数。

谢谢您的帮助


if ($this->request->is('post')){
            $user = $this->Auth->identify();
            if ($user){
                $this->Auth->setUser($user);
                $response = array(
                    "status" => "Success",
                    "data" => $user
                );
                $this->set(compact('response'));
            }else{
                var_dump($this->request->getData());
                $response = array(
                    "status" => "error : wrong login or password",
                    "data" => ""
                );

                $this->set(compact('response'));

            }
        }

    }

0 个答案:

没有答案