我使用此文档https://laravel.com/docs/master/passport在 Laravel 5.3 中安装了 Passport Auth
但我已经按照“前端快速入门”标题之前的步骤进行操作,现在我有一个 API 路由:
Route::get('/user', function (Request $request) {
//return $request->user();
return json_encode(array(
1 => "John",
2 => "Mary",
3 => "Steven"
));
})->middleware('auth:api');
我正在尝试通过邮递员访问 api urlhttp://localhost/project/public/api/user
带标题:Accept: application/json
它向我展示了这个输出:
{"error":"Unauthenticated."}
请告诉我如何使用护照身份验证我的 API?另外我如何生成 access_token 进行授权?