1

我想附加Authorization: Bearer {yourtokenhere}在我的 Laravel 中。如果在 Postman 中,我将 Authorization 放在 Headers 选项卡上并通过编写手动给出令牌值,Bearer {token}这样我就可以保护特定的路线,但是如何在 Laravel 源代码中做到这一点?我应该在我的控制器中做什么,或者我应该在中间件或内核或其他地方添加另一种方法?这是因为我得到了{"error":"token_not_provided"}每个访问受保护的路由jwt.auth middleware

这是给我的受保护路线{"error":"token_not_provided"}

Route::group(['middleware' => ['jwt.auth']], function(){
    Route::get('/dashboard', 'AppController@dashboard');
});

这是我在 AuthController 中的登录方法:

  public function signin(Request $request)
  {
    $this->validate($request, [
      'username' => 'required',
      'password' => 'required'
    ]);
    // grab credentials from the request
    $credentials = $request->only('username', 'password');
    try {
        // attempt to verify the credentials and create a token for the user
        if (! $token = JWTAuth::attempt($credentials)) {
            return response()->json([
              'error' => 'Invalid Credentials, username and password dismatches. Or username may not registered.',
              'status' => '401'
            ], 401);
        }
    } catch (JWTException $e) {
        // something went wrong whilst attempting to encode the token
        return response()->json(['error' => 'could_not_create_token'], 500);
    }

    return response()->json([
      'user_id' => $request->user()->id,
      'token'   => $token
    ]);
  }
4

1 回答 1

0

你可以这样设置

$request = Request::create(route('abc', 'GET'); $request->headers->set('X-Authorization', 'xxxxx');

有关更多信息,您可以关注此 stackoverflow 答案 如何设置转发请求的标头

如果您使用 jwt,您甚至可以在 url 中传递您的令牌,例如www.example.com/post?token=kjdhfkjsffghrueih

就像你说的,你需要这个,AuthAcontroller然后你必须在客户端设置它。首先将该令牌存储在本地存储中并将该令牌设置为来自本地存储的http调用(我猜是通过ajax或axios),然后将请求发送到laravel。

要在 ajax 调用中访问,您可以使用以下代码

headerParams = {'Authorization':'bearer t-7614f875-8423-4f20-a674-d7cf3096290e'}; //token form localstorage

然后在ajax中使用它

type: 'get', url: 'https://api.sandbox.slcedu.org/api/rest/v1/students/test1', headers: headerParams,

或者如果你使用 axios,你可以通过

axios.defaults.headers.common['Authorization'] = 'Bearer ' + localStorage.getItem('SecurityKey');

于 2019-04-17T13:04:36.693 回答