現在、cakephp4を用いてログイン認証を機能を実装しております。
公式サイトを(公式サイト)を見ながら実装していましたが、いざログインしようとすると出来ず、print_r()で中を見るとpostされておらず下記のような状態です。
Authentication\Authenticator\Result Object ( [_status:protected] => FAILURE_IDENTITY_NOT_FOUND [_data:protected] => [_errors:protected] => Array ( [Password] => Array ( ) ) )
このメッセージを検索しても参考になるサイトがなかったため質問させて頂きます。
原因はなんでしょうか??
php
1 public function getAuthenticationService(ServerRequestInterface $request): AuthenticationServiceInterface 2{ 3 $authenticationService = new AuthenticationService([ 4 'unauthenticatedRedirect' => '/sample/contacts/login', //未ログイン時にログイン画面にリダイレクトするように指定 5 'queryParam' => 'redirect', 6 ]); 7 8 // メールアドレスとパスワードを認証情報とする 9 $authenticationService->loadIdentifier('Authentication.Password', [ 10 'resolver'=>[ 11 'className' => 'Authentication.Orm', 12 'userModel' => 'Contacts' 13 ], 14 'fields' => [ 15 'username' => 'mail', 16 'password' => 'password' 17 ] 18 ]); 19 20 // 認証子をロードするには、最初にセッションを実行する必要があります 21 $authenticationService->loadAuthenticator('Authentication.Session'); 22// メールアドレスとパスワードを認証情報としてチェックする設定 23 $authenticationService->loadAuthenticator('Authentication.Form', [ 24 'fields' => [ 25 'username' => 'mail', 26 'password' => 'password' 27 ], 28 'loginUrl' => '/sample/contacts/login', 29 ]);
php
1public function login() 2{ 3 $this->request->allowMethod(['get', 'post']); 4 $result = $this->Authentication->getResult(); 5 print_r($result); 6 // POSTやGETに関係なく、ユーザーがログインしていればリダイレクトします 7 if ($result->isValid()) { //ログイン状態かどうかのチェック 8 // ログイン成功後に /article にリダイレクトします 9 $redirect = $this->request->getQuery('redirect', [ 10 'controller' => 'Contacts', 11 'action' => 'home0', 12 ]); 13 14 return $this->redirect($redirect); 15 } 16 // ユーザーの送信と認証に失敗した場合にエラーを表示します 17 if ($this->request->is('post') && !$result->isValid()) { 18 $this->Flash->error(__('Invalid email or password')); 19 } 20}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。