我使用dingo/api(内置支持jwt-auth)来制作API。
假设这是我的路线:
$api->group(['prefix' => 'auth', 'namespace' => 'Auth'], function ($api) {
$api->post('checkPhone', 'LoginController@checkPhone');
//Protected Endpoints
$api->group(['middleware' => 'api.auth'], function ($api) {
$api->post('sendCode', 'LoginController@sendCode');
$api->post('verifyCode', 'LoginController@verifyCode');
});
});
具有授权和创建令牌任务的 checkPhone
方法如下:
public function checkPhone (Request $request)
{
$phone_number = $request->get('phone_number');
if (User::where('phone_number', $phone_number)->exists()) {
$user = User::where('phone_number', $phone_number)->first();
$user->injectToken();
return $this->response->item($user, new UserTransformer);
} else {
return $this->response->error('Not Found Phone Number', 404);
}
}
injectToken()
模型上的User
方法是:
public function injectToken ()
{
$this->token = JWTAuth::fromUser($this);
return $this;
}
令牌创建工作正常。
但是当我将其发送到受保护的端点时,始终会发生Unable to authenticate with invalid token
。
受保护的端点操作方法是:
public function verifyCode (Request $request)
{
$phone_number = $request->get('phone_number');
$user_code = $request->get('user_code');
$user = User::wherePhoneNumber($phone_number)->first();
if ($user) {
$lastCode = $user->codes()->latest()->first();
if (Carbon::now() > $lastCode->expire_time) {
return $this->response->error('Code Is Expired', 500);
} else {
$code = $lastCode->code;
if ($user_code == $code) {
$user->update(['status' => true]);
return ['success' => true];
} else {
return $this->response->error('Wrong Code', 500);
}
}
} else {
return $this->response->error('User Not Found', 404);
}
}
我使用PostMan
作为API客户端,并将生成的令牌作为标头发送,如下所示:
Authorization:Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5ODkxMzk2MTYyNDYiLCJpc3MiOiJodHRwOlwvXC9hcGkucGFycy1hcHAuZGV2XC92MVwvYXV0aFwvY2hlY2tQaG9uZSIsImlhdCI6MTQ3NzEyMTI0MCwiZXhwIjoxNDc3MTI0ODQwLCJuYmYiOjE0NzcxMjEyNDAsImp0aSI6IjNiMjJlMjUxMTk4NzZmMzdjYWE5OThhM2JiZWI2YWM2In0.EEj32BoH0URg2Drwc22_CU8ll--puQT3Q1NNHC0LWW4
在网络和相关存储库上进行多次搜索后,我无法找到解决方案。
您认为有什么问题?
更新:
我发现找不到错误是laravel提供的loginController的构造函数:
public function __construct ()
{
$this->middleware('guest', ['except' => 'logout']);
}
因为当我评论$this->middleware('guest', ['except' => 'logout']);
所有事情都奏效了。
但如果我删除这一行是正确的?
API的这一行怎么样?
答案 0 :(得分:1)
将我的config / api.php更新为此诀窍
// config/api.php
...
'auth' => [
'jwt' => 'Dingo\Api\Auth\Provider\JWT'
],
...
答案 1 :(得分:0)
正如我前面提到的更新注释问题是我在LoginController中使用了checkPhone
和verifyCode
,它在其构造函数中检查了guest。
并且因为guest
中间件引用了\App\Http\Middleware\RedirectIfAuthenticated::class
并且将登录用户重定向到/home
目录而我没有创建它,所以发生了404 error
。
现在我只是将这些方法移动到UserController
而没有任何中间件构建器。
答案 2 :(得分:0)
总是值得一读消息来源,看看发生了什么。答案:期望auth提供程序的标识符以便检索用户。
/**
* Authenticate request with a JWT.
*
* @param \Illuminate\Http\Request $request
* @param \Dingo\Api\Routing\Route $route
*
* @return mixed
*/
public function authenticate(Request $request, Route $route)
{
$token = $this->getToken($request);
try {
if (! $user = $this->auth->setToken($token)->authenticate()) {
throw new UnauthorizedHttpException('JWTAuth', 'Unable to authenticate with invalid token.');
}
} catch (JWTException $exception) {
throw new UnauthorizedHttpException('JWTAuth', $exception->getMessage(), $exception);
}
return $user;
}