passport搭建api服务 用户认证Auth门面问题

client发送用户帐号密码请求

//post
user(){ 
    if(Auth:once($request->all())){
         //验证成功
    }
}

api请求的结果却是提示once方法不存在。
将user()配置一个get路由
直接用路由访问
http://domain/[email protected]&password=111
如果用这种方法请求验证正常,唯独api请求会提示once方法不存在。很奇 怪