Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
70 views

I'm trying to enable Client Credentials grant to secure API endpoints. I want to create an API between a database and several websites (and SPAs) so I can monitor what website/SPA calls which ...
Srinidhi reddy's user avatar
0 votes
0 answers
61 views

My project is using a modified implementation of Laravel Passport for authentication. I have a route, /auth/login, which I use for authentication. POST is for logging in, PUT is for refreshing tokens, ...
Scott McMullan's user avatar
0 votes
2 answers
207 views

I created a laravel project from scratch using composer and I am using mysql as my database. I connected my database with my laravel project in the .env file in laravel. Then I require passport to my ...
Bryar Laiq's user avatar
-3 votes
1 answer
160 views

Here is response of api, which showing 500 error, when creating token with passport in laravel. all things as ok and tried many things but not solved. { "status": false, "...
Sujeet kumar's user avatar
0 votes
1 answer
82 views

I installed Log Viewer in my laravel 11 protect, and works like a charm. But i want to limit who has access to the Log Viewer in production. So,i create a middleware <?php namespace App\Http\...
Zekura's user avatar
  • 335
-5 votes
1 answer
647 views

i want to use laravel passport to generate refresh and access tokens i followed this Article : https://dev.to/mahmudulhsn/laravel-passport-api-authentication-with-access-and-refresh-token-16d0 but ...
user24914143's user avatar
1 vote
0 answers
150 views

I am trying to now authenticate my users, but it seems like web-auth/webauthn-lib (v5) is now expecting a userHandle even though when it has been set to null? {"error":"Invalid user ...
Daniel L's user avatar
  • 273
0 votes
1 answer
70 views

I'm trying to implement a custom OAuth2 grant type in Laravel Passport for mobile authentication, but I'm encountering the following error { "error": "unsupported_grant_type", ...
kamal gharejeloo's user avatar
1 vote
1 answer
140 views

I’m using Laravel 11 with Laravel Passport 11.x to handle API authentication. I’ve set up Passport for OAuth2 authentication and personal access tokens. However, I’m encountering the following error ...
Sandy's user avatar
  • 19
0 votes
1 answer
320 views

I'm encountering an error when using Laravel Passport with Laravel version 10.48.22 and Laravel Passport version 12.3.0. Steps to reproduce: I moved the predefined application routes to a separate ...
alireza.haraji.dev's user avatar
0 votes
0 answers
414 views

I'm trying to develop my first webapp with Laravel so I can practice a bit but I've hit a roadblock right at the beginning. I didn't find anything on google regarding this problem, and I already tried ...
Henrique Guimarães's user avatar
0 votes
1 answer
114 views

In My AWS ec2 ubuntu server the login is working properly it gives user login token. I have moved the files to serverless aws apllication with same ec2 mysql database credentials. All other apis are ...
Brindha's user avatar
  • 391
1 vote
3 answers
3k views

I had a problem, when I deploy my project into Heroku I try to register but this error comes out I try all solving I search for but doesn't help me, I use php artisan:migrate, php artisan passport:...
Ahmed Suad Alzahrani's user avatar
-1 votes
1 answer
59 views

Im using laravel passport for my authentication, here is my api Route::post('login', [AuthController::class, 'login']); // Rute yang Memerlukan Token Akses Route::middleware('auth:api')->group(...
Tsabit's user avatar
  • 55
0 votes
1 answer
193 views

Im using Laravel Passport and I'm trying to convert my code from using tokens stored in the localhost to using httponly cookies. I followed this documentation: https://laravel.com/docs/5.8/passport#...
JRC's user avatar
  • 1
1 vote
1 answer
406 views

I have installed and configured passport and everything seems to be working quite well until I wanted to deploy to serverless (Lambda). I have generated my keys with artisan passport:install and ...
Jean Linux's user avatar
1 vote
1 answer
182 views

working with Laravel 10 and passport authentication. I have following api route list as well api.php Route::prefix('v1')->group(function (){ Route::post('/login',[AuthController::class,'login'])...
Matakoththuwakoni's user avatar
1 vote
1 answer
97 views

using postman: I can access the route using a client grant from a token obtained in /oauth/token I can also access the route using a token from the login user (personal access client) however, I'm ...
Kelv1nG's user avatar
  • 65
-1 votes
1 answer
524 views

When I create access_token and refresh_token using Laravel 11 passport then the following error occurs: unsupported_grant_type","error_description":"The authorization grant type ...
meet ranoliya's user avatar
8 votes
1 answer
18k views

Im am trying to make login functionality using Laravel 11, Laravel Passport and TanancyForLaravel, but i get the following error: Invalid key supplied I want to create login functionality for users at ...
Sven Nijkamp's user avatar
0 votes
1 answer
65 views

I'm using Laravel 9 Passport. On the front-end after a user signs into a social account, I"m passing the provider info to the Auth issueToken method. I'd like to return if a new account was ...
user1666858's user avatar
1 vote
0 answers
191 views

I am using Laravel Passport's Authorization Code Grant to authenticate users. I want to return a JSON response if the access token is expired when accessing an "auth:api" middleware ...
swh's user avatar
  • 11
0 votes
0 answers
124 views

I have an SPA app that uses Laravel Passport. For the web, I am using sessions. If I set my session.lifetime to 5 minutes, sit on the login page for 5 minutes, and then login, I receive a 419 (...
Brian's user avatar
  • 3,621
3 votes
0 answers
251 views

so I am stuck on this for several days now. My ultimate goal is to break down an old monolith application into a micro-service architecture and the very 1st step is to extract quite complex ...
WellBloud's user avatar
  • 977
0 votes
0 answers
126 views

I´ve just started Laravel Passport and noticed something weird that has not been in any tutorial. After I run php artisan passport:install, it shows my client ID as a long hash. But normally, it ...
Dan Rais's user avatar
  • 329

1
2 3 4 5
32