野狗 API 应用的一个问题?!也许不算是,希望大神指教!叩谢~
先报版本吧。
1、/**
* The Laravel framework version.
*
* @var string
*/
const VERSION = '5.6.8';·
2、"dingo/api": "2.0.0-alpha1"
其他的也是按伟大的社区API教程里面部署的。
需求:接口不强制Authorization, 但是判断是否有此参数,来对数据进行操作。也就是,判断是否登陆,登陆有一套流程,不登陆也可以,走另一套流程;
实现:直接api的时候没有加中间件,给的是游客路由:$api->get('trends', 'TrendController@index');
没有中间件。
这样保证没登陆不会报错。
那么问题来了:
在Controller 方法里,调用$this->auth()->check(true)
判断是否登陆,BUT~ 报错了:"message": "Type error: Argument 1 passed to
Symfony\\Component\\HttpKernel\\Exception\\UnauthorizedHttpException::__construct() must be of the type string, null given, called in /home/vagrant/Code/dm-api-dingo/vendor/dingo/api/src/Auth/Auth.php on line 113",
……
就是这样的错,我去查看了下源文件,发现在dingo/api/Auth/Auth.php
有这么一个方法:protected function throwUnauthorizedException(array $exceptionStack)
{
$exception = array_shift($exceptionStack);
if ($exception === null) {
$exception = new UnauthorizedHttpException(null, 'Failed to authenticate because of bad credentials or an invalid authorization header.');
}
throw $exception;
}
方法 new 了 Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException这个类,并传入了null的参数。
我不知道这个意味着什么,但是我去看这个类的构建函数发现:public function __construct(string $challenge, string $message = null, \Exception $previous = null, ?int $code = 0, array $headers = array())
{
$headers['WWW-Authenticate'] = $challenge;
parent::__construct(401, $message, $previous, $headers, $code);
}
人家写了要sting嘛,我如果强制把null 换成 '' 就一切正常了……
所以,求教下,这个是dingo的BUG么?
还是我哪里没看到?
还是升级了我没看到,我看了github 上的 dingo/api版本 跟现在是一样的啊~
是该咋搞呢?除了重写,还有别的方法么?
或者有什么别的方法实现俺的需求呢?
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: