流明:RoutesRequests.php 第 229 行中的 NotFoundHttpException,调度程序 NOT_FOUND
Posted
技术标签:
【中文标题】流明:RoutesRequests.php 第 229 行中的 NotFoundHttpException,调度程序 NOT_FOUND【英文标题】:Lumen: NotFoundHttpException in RoutesRequests.php line 229, Dispatcher NOT_FOUND 【发布时间】:2020-02-18 23:34:46 【问题描述】:我尝试了一个带有 laravel-passport 的 vue-lumen-tutorial。除了 LoginController (通过用户和密码登录)之外,一切对我来说都很好。 我认为这不是教程代码的问题,它更多的是服务器或 laravel/lumen 配置问题。但我不确定。 该代码在 linux 机器 (18.04)、带有 Lumen (5.8.12) (Laravel Components 5.8.*) 的 apache 服务器和 Passport 上远程运行。 api 端点可用,但 /login 端点给出 404 Not found。
我在这里找到了一些关于 lumen 或 .htaccess 文件的 index.php 的问题/答案。 Just installed Lumen and got NotFoundHttpException 。但这对我没有帮助。
我正在使用 Postman 进行测试:
GET to https://domain/api/companies/ works fine,
POST to https://domain/api/oauth/token works fine, but
POST to https://domain/api/login gives a 404 Not found.
The route /login is ok.
...
return app()->version(); only for testing gives a request but i need the $tokenRequest:
...
return app()->dispatch($tokenRequest); => 404 Not found
...
error message:
(1/1) NotFoundHttpException
in RoutesRequests.php line 229
...
protected function handleDispatcherResponse($routeInfo)
switch ($routeInfo[0])
case Dispatcher::NOT_FOUND:
throw new NotFoundHttpException; <== 229
case Dispatcher::METHOD_NOT_ALLOWED:
throw new MethodNotAllowedHttpException($routeInfo[1]);
case Dispatcher::FOUND:
return $this->handleFoundRoute($routeInfo);
...
Maybe a proxy issue between /oauth/token and /login? What can i do?
LoginController 在第 45 行:https://github.com/aibim/vue-lumen-tutorial/blob/master/app/Http/Controllers/LoginController.php
【问题讨论】:
【参考方案1】:我发现了错误。 APP_URL 路径 .env 错误。我
wrong: APP_URL=https://domain.de/public/
right: APP_URL=https://domain.de/
【讨论】:
以上是关于流明:RoutesRequests.php 第 229 行中的 NotFoundHttpException,调度程序 NOT_FOUND的主要内容,如果未能解决你的问题,请参考以下文章