So, I have created a site using Laravel 5.3 and I have installed passport.
As far as I can see everything is working just fine with the install and the Vue components to create a token etc.
I have created a personal token in my user area and attempted to use that to authorise with the API but I am getting 401 unauthorised every time.
My headers with the request in postman
Am i missing something with the settings here?
I have also tried following the oauth flow in a seperate "consumer.dev" and im getting unauthorised errors there aswell.
I have checked the contents of my config/auth.php and that has the correct driver declaration.
'api' => [
'driver' => 'passport',
'provider' => 'users',
],
I am a touch confused where to go from here. Any help is appreciated.