@andrea.chiarelli Thank you so much for being available
First is it “myapp://callback” or “myapp”? Since this “myapp” seems to be not allowed in the dashboard
Second, where should I have it registered? I can not find any spot in the manifest file in my application project to add it but I have added it in the Auth0 dashboard.
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="$placeholder$"
Description="$placeholder$"
Square150x150Logo="$placeholder$.png"
Square44x44Logo="$placeholder$.png"
BackgroundColor="transparent">
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
<uap:SplashScreen Image="$placeholder$.png" />
</uap:VisualElements>
<Extensions>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="myapp">
<uap:DisplayName>MauiAuth0App</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
</Extensions>
</Application>
</Applications>
Is it ok to use
SecureStorage.RemoveAll();
instead ? what are the drawbacks?
finally, how can I close the browser after the user logs in for example the desktop app on Windows?