I have a backend for my flutter mobile application for which I m fetching data from api routes.
I need to fetch a certain webview from my backend which needs to be handled with authorisation headers from the mobile. So that the user need not to re enter username and password.
@ntn0de You could either work with signed URLs, if that matches your case or create and work with some sort of "one time access token" (like Laravel's password reset does).
Be careful what the user is allowed to do tho and maybe force a login if he/she tries to access other areas.
Hi @nimrod
Thanks the signed url worked just fine for the function I'd like to implement. The page was blank because the template was wrapped with @ can admin.
I m also looking for a way to just authenticate the user inside the web and interact with other links as well.