I have application that have username and password, so that user logs to the app. Some (less important) functionality is still as web page.
But to be user friendly, it is annoying for user to login again after already logging in.
I am looking at the SFSafariViewController and it looks promising, but I am trying to set the Authorization header when calling the URL. I already know the user token, but it needs to be set as Authorization headers.
So the flow it would be:
User log in inside App -> get token -> set this token as Authorization header -> call my web app url
Is this possible with this controller?