我已经在我的 Lumen(5.8.4) 应用程序中将 tymon/jwt-auth 版本 1.0.0-rc4.1 实现为第三方,现在当我继续按照https://github.com/dingo/使用 Dingo 实现身份验证时api/wiki/Authentication在我需要添加它的步骤(或任何其他方式向 dingo 注册 jwt)
app('Dingo\Api\Auth\Auth')->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT($app['Tymon\JWTAuth\JWTAuth']);
});
到 app.php 我得到这个错误
错误:目标 [Dingo\Api\Contract\Routing\Adapter] 在构建 [Dingo\Api\Auth\Auth, Dingo\Api\Routing\Router] 时不可实例化。
我想我已经搜索并尝试了互联网上关于这个主题的所有东西,因为我正在研究它 2 天,其中大多数都使用旧版本的 dingo 和/或 Lumen。我还尝试了在 git 上找到的不同适配器,但它们都不起作用。
这是我的设置:composer.json:
"require": {
"php": ">=7.1.3",
"dingo/api": "^2",
"flipbox/lumen-generator": "^5.6",
"laravel/lumen-framework": "5.8.*",
"nesbot/carbon": "^2.17",
"tymon/jwt-auth": "1.0.0-rc4.1",
"vlucas/phpdotenv": "^3.3"
}
应用程序.php
app('Dingo\Api\Auth\Auth')->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT($app['Tymon\JWTAuth\JWTAuth']);
}); <- this makes problem, without this everything works, I even get jwt in postman
$app->register(Tymon\JWTAuth\Providers\LumenServiceProvider::class);
$app->register(Dingo\Api\Provider\LumenServiceProvider::class);
$app->register(App\Providers\AppServiceProvider::class);
$app->register(App\Providers\AuthServiceProvider::class);
有人在较新版本上进行过实施,或者有更好的方法吗?我尝试了一个工作示例 https://github.com/krisanalfa/lumen-jwt但正如我所见,上次更新是 2 年前,Lumen 版本是 5.4。我应该使用它还是不推荐使用它?