Our Backend developer is using Python for backend and as i believe in Laravel, I'm building frontend with Laravel. he wants to build the whole backend on API so i would have lets problem for security and connectors.
the question here is, he wants to use Flask-User for authentication purpose and as i know not much about Flask and python, Would you please guide me how can i Authenticate users using API and Flask-User?
And is there any good detailed guide for connection laravel at frontend to flask at backend? if it does, it would heal lots of pain in my .... because there will be lots of question along the way.
@parkourrunner I'm not familiar with Flask but presumably Flask has builtin authentication and authorization features or your backend developer knows how to implement those features.
Since you're working on the frontend, you don't need to worry too much about authentication. Since the application will be an based on an API (I assume REST), the backend developer will provide you with an endpoint to which you post your login data. You just have to handle the response from the API :)