I have a .NET MAUI application that I need to load an Experience Builder application from the client's portal in. The user is already authenticated earlier in their workflow at app-start.
I can load the Exp Builder app from WebView by setting the Source property to its URL in Portal. The issue is that I'm being asked to authenticate by logging in inside the WebView. I'd like to avoid this workflow where the user has to enter their credentials more than once in the entire application workflow.
I tried passing the access token from Portal by setting &token=token-value as a parameter to the WebView source. Unfortunately, this didn't work either.
What have others tried to get this authentication working for them?