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:
@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);...
Jump to solution
3 Replies
Dennis Koch
Dennis Koch14mo ago
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
jha_abhishek
jha_abhishek14mo ago
@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);
jha_abhishek
jha_abhishekOP14mo ago
@Dennis Koch Thank you so much!

Did you find this page helpful?