这里是Lumen Vuejs的新手。
我有两个框架之间的连接问题,特别是生成令牌。
这是我的App.php
require_once __DIR__.'/../vendor/autoload.php';
try {
(new Dotenv\Dotenv(__DIR__.'/../'))->load();
} catch (Dotenv\Exception\InvalidPathException $e) {
//
}
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| Here we will load the environment and create the application instance
| that serves as the central piece of this framework. We'll use this
| application as an "IoC" container and router for this framework.
|
*/
$app = new Laravel\Lumen\Application(
realpath(__DIR__.'/../')
);
$app->withFacades();
$app->withEloquent();
/*
|--------------------------------------------------------------------------
| Register Container Bindings
|--------------------------------------------------------------------------
|
| Now we will register a few bindings in the service container. We will
| register the exception handler and the console kernel. You may add
| your own bindings here if you like or you can make another file.
|
*/
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
/*
|--------------------------------------------------------------------------
| Register Middleware
|--------------------------------------------------------------------------
|
| Next, we will register the middleware with the application. These can
| be global middleware that run before and after each request into a
| route or middleware that'll be assigned to some specific routes.
|
*/
$app->middleware([
App\Http\Middleware\ExampleMiddleware::class,
palanik\lumen\Middleware\LumenCors::class
]);
$app->routeMiddleware([
'auth' => App\Http\Middleware\Authenticate::class,
'cors' => palanik\lumen\Middleware\LumenCors::class,
]);
/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which
| are used to bind services into the container. Service providers are
| totally optional, so you are not required to uncomment this line.
|
*/
// $app->register(App\Providers\AppServiceProvider::class);
// $app->register(App\Providers\EventServiceProvider::class);
$app->register(App\Providers\AuthServiceProvider::class);
$app->register(Laravel\Passport\PassportServiceProvider::class);
$app->register(Dusterio\LumenPassport\PassportServiceProvider::class);
/*
|--------------------------------------------------------------------------
| Load The Application Routes
|--------------------------------------------------------------------------
|
| Next we will include the routes file so that they can all be added to
| the application. This will provide all of the URLs the application
| can respond to, as well as the controllers that may handle them.
|
*/
$app->group(['namespace' => 'App\Http\Controllers'], function ($app) {
require __DIR__.'/../routes/web.php';
});
return $app;
这是我的AuthServiceProvider.php
<?php
namespace App\Providers;
use App\User;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\ServiceProvider;
use Dusterio\LumenPassport\LumenPassport;
class AuthServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Boot the authentication services for the application.
*
* @return void
*/
public function boot()
{
// Here you may define how you wish users to be authenticated for your Lumen
// application. The callback which receives the incoming request instance
// should return either a User instance or null. You're free to obtain
// the User instance via an API token or any other method necessary.
// Dusterio\LumenPassport\LumenPassport::routes($app);
LumenPassport::routes();
$this->app['auth']->viaRequest('api', function ($request) {
if ($request->input('api_token')) {
return User::where('api_token', $request->input('api_token'))->first();
}
});
}
}
此处的问题可在AuthServiceProvider.php文件中找到。我已经使用这个包https://github.com/dusterio/lumen-passport
用于护照,https://github.com/palanik/lumen-cors
用于HTTP请求的交叉来源,我不知道错误发生在哪里,即使我正确地遵循2个包的文档已经完全完成。
非常感谢您的回复!
答案 0 :(得分:1)
你可能使用Lumen 5.5。
dusterio\lumen-passport
目前与Lumen 5.5不兼容(2017年5月5日)(见https://github.com/dusterio/lumen-passport/pull/53)
要么降级到Lumen 5.4,要么等待此软件包更新。
答案 1 :(得分:0)
刚刚找到解决方案。
致电 -
Dusterio\LumenPassport\LumenPassport::routes($app);
注册Passport服务提供商后,在 bootstrap / app.php 中,而不是在docs中定义的AppServiceProvider中调用 LumenPassport :: routes(); 。
然后,转到 -
<app_source>/vendor/dusterio/lumen-passport/src/LumenPassport.php
搜索路线功能
public static function routes($callback = null, array $options = [])
{
...
}
寻找 -
$callback->group($options, function ($router) use ($callback) {
...
});
改变 -
$callback->group(...) to $callback->route->group(...)
完全解决了这个问题。
答案 2 :(得分:0)
我认为是$callback->router->group
答案 3 :(得分:0)
查看新鲜流明项目bootstrap/app.php
$app->router->group([
'namespace' => 'App\Http\Controllers',
], function ($router) {
require __DIR__.'/../routes/web.php';
});
return $app;
Lumen改变了定义路线的方式。所以,使用新的方式。
$app->group
$app->route->group