- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试为 Lumen + Dingo Rest API 建立一个基本的工作基础,但我无法弄清楚和平是如何结合在一起的。
Lumen 工作正常,但当我尝试添加 Dingo 时,出现各种错误。来自Dingo documentation我阅读:
一旦你有了这个包,你就可以在你的 config/api.php
文件或服务提供者或引导文件中配置提供者。
'jwt' => 'Dingo\Api\Auth\Provider\JWT'
或
app('Dingo\Api\Auth\Auth')->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT($app['Tymon\JWTAuth\JWTAuth']);
});
我已经安装了一个新的 Lumen 副本,但我没有看到任何 config/api.php
,所以我假设我正在处理将这段代码放在我的 bootstrap/app.php
这就是我的 bootstrap/app.php
的样子:
<?php
require_once __DIR__.'/../vendor/autoload.php';
try {
(new Dotenv\Dotenv(__DIR__.'/../'))->load();
} catch (Dotenv\Exception\InvalidPathException $e) {
//
}
$app = new Laravel\Lumen\Application(
realpath(__DIR__.'/../')
);
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
$app->register(Dingo\Api\Provider\LumenServiceProvider::class);
app('Dingo\Api\Auth\Auth')->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT($app['Tymon\JWTAuth\JWTAuth']);
});
$app->group(['namespace' => 'App\Api\Controllers'], function ($app) {
require __DIR__.'/../app/Api/routes.php';
});
return $app;
运行时出现以下错误:
BindingResolutionException in Container.php line 752:
Target [Tymon\JWTAuth\Providers\JWT\JWTInterface] is not instantiable while building [Tymon\JWTAuth\JWTAuth, Tymon\JWTAuth\JWTManager].
in Container.php line 752
at Container->build('Tymon\JWTAuth\Providers\JWT\JWTInterface', array()) in Container.php line 633
at Container->make('Tymon\JWTAuth\Providers\JWT\JWTInterface', array()) in Application.php line 205
at Application->make('Tymon\JWTAuth\Providers\JWT\JWTInterface') in Container.php line 853
at Container->resolveClass(object(ReflectionParameter)) in Container.php line 808
at Container->getDependencies(array(object(ReflectionParameter), object(ReflectionParameter), object(ReflectionParameter)), array()) in Container.php line 779
at Container->build('Tymon\JWTAuth\JWTManager', array()) in Container.php line 633
at Container->make('Tymon\JWTAuth\JWTManager', array()) in Application.php line 205
at Application->make('Tymon\JWTAuth\JWTManager') in Container.php line 853
at Container->resolveClass(object(ReflectionParameter)) in Container.php line 808
at Container->getDependencies(array(object(ReflectionParameter), object(ReflectionParameter), object(ReflectionParameter), object(ReflectionParameter)), array()) in Container.php line 779
at Container->build('Tymon\JWTAuth\JWTAuth', array()) in Container.php line 633
at Container->make('Tymon\JWTAuth\JWTAuth', array()) in Application.php line 205
at Application->make('Tymon\JWTAuth\JWTAuth') in Container.php line 1178
at Container->offsetGet('Tymon\JWTAuth\JWTAuth') in app.php line 95
at {closure}(object(Application))
at call_user_func(object(Closure), object(Application)) in Auth.php line 216
at Auth->extend('jwt', object(Closure)) in app.php line 96
at require('/vagrant/dev_src/api/bootstrap/app.php') in index.php line 14
只有当我删除以下代码时,它才会再次起作用:
app('Dingo\Api\Auth\Auth')->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT($app['Tymon\JWTAuth\JWTAuth']);
});
.env
文件:
APP_ENV=local
APP_DEBUG=true
APP_KEY=xxxxSECRETxxxx
CACHE_DRIVER=file
QUEUE_DRIVER=sync
JWT_SECRET=yyyySECRETyyyy
API_VENDOR=MyCompanyName
API_STANDARDS_TREE=vnd
API_PREFIX=api
API_VERSION=v1
API_NAME="MyCompanyName API"
API_CONDITIONAL_REQUEST=false
API_STRICT=false
API_DEFAULT_FORMAT=json
最佳答案
你有很多事情要做。这是指南:
您必须手动绑定(bind) CacheManager
实现:
$app->singleton(
Illuminate\Cache\CacheManager::class,
function ($app) {
return $app->make('cache');
}
);
你还需要绑定(bind)AuthManager
实现:
$app->singleton(
Illuminate\Auth\AuthManager::class,
function ($app) {
return $app->make('auth');
}
);
在注册 Dingo\Api\Provider\LumenServiceProvider
之前,您必须先注册 Tymon\JWTAuth\Providers\JWTAuthServiceProvider
。
$app->register(Tymon\JWTAuth\Providers\JWTAuthServiceProvider::class);
$app->register(Dingo\Api\Provider\LumenServiceProvider::class);
在注册 Tymon\JWTAuth\Providers\JWTAuthServiceProvider
之前,您需要创建一个 config_path
函数,因为 Lumen 不支持这个全局函数。
/**
* Because Lumen has no config_path function, we need to add this function
* to make JWT Auth works.
*/
if (!function_exists('config_path')) {
/**
* Get the configuration path.
*
* @param string $path
*
* @return string
*/
function config_path($path = '')
{
return app()->basePath().'/config'.($path ? '/'.$path : $path);
}
}
这是我的完整 bootstrap/app.php
文件:
<?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
);
$app->singleton(
Illuminate\Contracts\Routing\ResponseFactory::class,
Illuminate\Routing\ResponseFactory::class
);
$app->singleton(
Illuminate\Auth\AuthManager::class,
function ($app) {
return $app->make('auth');
}
);
$app->singleton(
Illuminate\Cache\CacheManager::class,
function ($app) {
return $app->make('cache');
}
);
/*
|--------------------------------------------------------------------------
| 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
// ]);
// $app->routeMiddleware([
// //
// ]);
/*
|--------------------------------------------------------------------------
| 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\AuthServiceProvider::class);
// $app->register(App\Providers\EventServiceProvider::class);
// JWTAuth Dependencies
/**
* Because Lumen has no config_path function, we need to add this function
* to make JWT Auth works.
*/
if (!function_exists('config_path')) {
/**
* Get the configuration path.
*
* @param string $path
*
* @return string
*/
function config_path($path = '')
{
return app()->basePath().'/config'.($path ? '/'.$path : $path);
}
}
$app->register(Tymon\JWTAuth\Providers\JWTAuthServiceProvider::class);
$app->register(Dingo\Api\Provider\LumenServiceProvider::class);
$app->make(Dingo\Api\Auth\Auth::class)->extend('jwt', function ($app) {
return new Dingo\Api\Auth\Provider\JWT(
$app->make(Tymon\JWTAuth\JWTAuth::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\Api\Controllers::class], function ($app) {
require __DIR__.'/../app/Api/routes.php';
});
return $app;
我使用 Lumen 和 Dingo API 制作了一个简单的 POC here .
关于php - Lumen + Dingo + JWT 在构建时不可实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36086846/
1. JWT 简介 JSON Web Token(JWT) 是一个开放标准(RFC 7519),它定义了一种紧凑的、自包含的方式,用于作为 JSON 对象在各方之间安全地传输信息。该信息可以被验证和信
关于JWT(json web token)的一些问题: 可以在手机上使用吗? 在我看来,它适用于移动设备,但它是否是一个很好的身份验证解决方案?如果不是,还有哪些其他解决方案可用于移动应用程序和服务器
我无法清楚地掌握 JWT 是如何工作的,尤其是。签名部分。 一旦客户端提交正确的用户名和密码,身份验证服务器就会创建一个 JWT token ,其中包含 header 、有效负载/声明和签名。 问题
我正在通过 jwt.io(在调试器部分)解码 JWT token 以查看标题、有效负载。令人惊讶的是,它还验证了,我可以看到它(jwt.io 调试器)也能够检索公钥。 所以我的问题是:JWT toke
我尝试使用 validate-jwt 策略限制使用 JWT token 对 REST API 的访问。以前从来没有这样做过。 这是我的入站策略(取自简单 token 验证here):
我们有一个微服务架构,使用 JWT 在服务之间进行身份验证。我希望轻松地从 JWT 中获取更多字段。目前实际上只有权限由 Spring Security 直接公开。 我们的边缘服务/API 网关创建以
我正在尝试在 .NET 中生成 JWT token 。起初,我尝试使用“System.IdentityModel.Tokens.Jwt”,但它在 token 验证期间引起了问题,所以我切换到“jose
我已经阅读了很多关于 stackOverflow 和 jwt 文档的问题。据我了解,现在我应该如何计算 token : header = { "alg": "HS256", "typ": "J
我想知道我可以设置的 JWT token 到期的最大值是多少。 谢谢! 最佳答案 没有关于过期时间的规定。它主要取决于使用 token 的上下文。 RFC7519 section 4 : The se
我在子域上托管了单独的身份验证应用程序和多个 spa 应用程序,我想将生成的 JWT token (当用户从身份验证应用程序登录时生成)从身份验证应用程序共享到子域下托管的其他应用程序。我怎样才能
据我所知,验证 JWT 签名是一个直接的过程。但是当我使用一些在线工具为我执行此操作时,它不匹配。如何在不使用 JWT 库的情况下手动验证 JWT 签名?我需要一种快速方法(使用可用的在线工具)来演示
我的 JSON 网络 token (JWT): eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6InU0T2ZORlBId0VCb3NIanRyYXVPYlY4
我是 JWT 的新手。我对 JWT 进行了一些研究,并了解到它的框架是“header.claims.signature”。 考虑一个简单的场景,如下所示: 客户通过身份验证 客户可能具有(一个或多个)
我需要知道的最大长度 JSON Web Token (JWT) 在规范中没有相关信息。难道,长度没有限制? 最佳答案 我也一直在努力寻找这个。 我想说 - 尝试确保它低于 7kb。 虽然 JWT 在规
我看到 JWT token 由 A-Z、a-Z、0-9 和特殊字符 - 和 _ 组成。我想知道 JWT token 中允许的字符列表? 最佳答案 来自JWT introduction :“输出是三个用
我正在使用 Jhipster 创建一个应用程序。为此,我想使用 Keycloak 身份验证服务器。但是,一旦我登录,就会收到以下消息:Statut : Internal Server Error (内
我正在使用 Jhipster 创建一个应用程序。为此,我想使用 Keycloak 身份验证服务器。但是,一旦我登录,就会收到以下消息:Statut : Internal Server Error (内
我在我的网站上使用 MEAN 堆栈,用户可以在其中将带有玩家信息的事件(2-4/事件)添加到购物车。有时他们会购买多个事件。我希望此信息不会受到用户操纵(如果他们使用控制台,则在结帐前更改信息),并且
一个 JSON Web token (JWT) 被分成三个 Base-64 编码的部分,这些部分由句点 (“.”) 连接起来。前两部分对 JSON 对象进行编码,第一部分是详细说明签名和散列算法的 h
我正在使用 django rest 框架 JWT 库 http://getblimp.github.io/django-rest-framework-jwt/ JWT token 过期有两个设置 JW
我是一名优秀的程序员,十分优秀!