How to login using Another API in filament panel
I want to use filament as Admin panel and all the process like authentication and CRUD will be done using the API's from other application.
Is there any way to achive this ?
Solution:Jump to solution
@Dennis Koch I have got the solution
Created a new login file and added the API Call and after the successful authentication I have used the below code for login.
Filament::auth()->login( $user);...
3 Replies
Other application == other codebase and server? If you can make it work with Laravel it will work with Filament. Maybe have a look at Socialite.
Solution
@Dennis Koch I have got the solution
Created a new login file and added the API Call and after the successful authentication I have used the below code for login.
Filament::auth()->login( $user);
@Dennis Koch Thank you so much!